mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-06 08:08:28 +08:00
13 lines
374 B
TypeScript
13 lines
374 B
TypeScript
![]() |
import { observable } from 'mobx';
|
||
|
import { Object3D } from 'three';
|
||
|
import { Area, Quest, VisibleQuestEntity } from '../domain';
|
||
|
|
||
|
class AppStateStore {
|
||
|
@observable currentModel?: Object3D;
|
||
|
@observable currentQuest?: Quest;
|
||
|
@observable currentArea?: Area;
|
||
|
@observable selectedEntity?: VisibleQuestEntity;
|
||
|
}
|
||
|
|
||
|
export const appStateStore = new AppStateStore();
|