import { Message } from '../../message/MessageUtils'; export class ProjectMessage extends Message{ static OPEN_NEW_PROJECT_WINDOW: string = "openNewProjectWindow"; static NEW_PROJECT: string = "newPrject"; static OPEN_PROJECT: string = "openProject"; static OPEN_RECENT_PROJECT: string = "openRecentProject"; static SAVE_PROJECT: string = "saveProject"; static SAVE_AS_PROJECT: string = "saveAsProject"; static RELOAD: string = "reload"; static CLOSE_EDITOR: string = "closeEditor"; static SWITCH_FULLSCREEN: string = "changeFullScreen"; static SWITCH_DEVELOP_TOOLS: string = "changeDevelopTools"; static INSERT_COMPONENT: string = "insertComponent"; static UPDATE_COMPONENTS: string = "updateComponents"; static INIT_PROJECT_TREE: string = 'initProjectTree'; static INIT_SCENE: string = "initScene"; }