mapcomplete/State.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
433 B
TypeScript
Raw Normal View History

2022-09-08 21:40:48 +02:00
import LayoutConfig from "./Models/ThemeConfig/LayoutConfig"
import FeaturePipelineState from "./Logic/State/FeaturePipelineState"
/**
* Contains the global state: a bunch of UI-event sources
*/
export default class State extends FeaturePipelineState {
/* The singleton of the global state
2021-07-24 01:59:57 +02:00
*/
2022-09-08 21:40:48 +02:00
public static state: FeaturePipelineState
2021-07-24 01:59:57 +02:00
constructor(layoutToUse: LayoutConfig) {
super(layoutToUse)
}
2020-07-31 16:17:16 +02:00
}