| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- export const Quit = "EditorEventQuit";
- export const ModalError = "ModalError";
- export interface ModalErrorEvent {
- title: string;
- message: string;
- }
- export const ContentFolderChanged = "ContentFolderChanged";
- export interface ContentFolderChangedEvent {
- path: string;
- }
- export const LoadProject = "EditorLoadProject";
- export interface LoadProjectEvent {
- // The full path to the .atomic file
- path: string;
- }
- export const SaveResource = "EditorSaveResource";
- export interface SaveResourceEvent {
- // The full path to the resource to save
- // empty or undefined for current
- path: string;
- }
- export const EditResource = "EditorEditResource";
- export interface EditResourceEvent {
- // The full path to the resource to edit
- path: string;
- }
|