diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-09 15:57:49 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-09 15:57:49 -0600 |
commit | e7536289cbb4380dc82dcd70737e165727cbbb92 (patch) | |
tree | 867a226b444eb0f04f00af33131088c9f3427f7c /src/state/models/root-store.ts | |
parent | 93b64cf474574b315bfe48594ed7170b9bd8261e (diff) | |
download | voidsky-e7536289cbb4380dc82dcd70737e165727cbbb92.tar.zst |
Add scene creator
Diffstat (limited to 'src/state/models/root-store.ts')
-rw-r--r-- | src/state/models/root-store.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/state/models/root-store.ts b/src/state/models/root-store.ts index da846a3b0..e2a505768 100644 --- a/src/state/models/root-store.ts +++ b/src/state/models/root-store.ts @@ -9,14 +9,14 @@ import {createContext, useContext} from 'react' import {isObj, hasProp} from '../lib/type-guards' import {SessionModel} from './session' import {NavigationModel} from './navigation' -import {ShellModel} from './shell' +import {ShellUiModel} from './shell-ui' import {MeModel} from './me' import {OnboardModel} from './onboard' export class RootStoreModel { session = new SessionModel(this) nav = new NavigationModel() - shell = new ShellModel() + shell = new ShellUiModel() me = new MeModel(this) onboard = new OnboardModel() |