mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
12 lines
527 B
TypeScript
12 lines
527 B
TypeScript
![]() |
import { QuestEditorView } from "./gui/QuestEditorView";
|
||
|
import { GuiStore } from "../core/stores/GuiStore";
|
||
|
import { QuestEditorStore } from "./stores/QuestEditorStore";
|
||
|
import { AsmEditorStore } from "./stores/AsmEditorStore";
|
||
|
|
||
|
export function initialize_quest_editor(gui_store: GuiStore): QuestEditorView {
|
||
|
const quest_editor_store = new QuestEditorStore(gui_store);
|
||
|
const asm_editor_store = new AsmEditorStore(quest_editor_store);
|
||
|
|
||
|
return new QuestEditorView(gui_store, quest_editor_store, asm_editor_store);
|
||
|
}
|