Some tweaks

This commit is contained in:
Pieter Vander Vennet 2022-07-26 16:51:00 +02:00
parent 88c6c676d6
commit 6d99dd5045
3 changed files with 22 additions and 13 deletions

11
test.ts
View file

@ -1,4 +1,9 @@
import LevelSelector from "./UI/Input/LevelSelector";
import {UIEventSource} from "./Logic/UIEventSource";
new LevelSelector(new UIEventSource(["0","1","2","2.5","x","3"])).AttachTo("maindiv")
import * as onwheels from "./assets/generated/themes/onwheels.json"
import FeaturePipelineState from "./Logic/State/FeaturePipelineState";
import LayoutConfig from "./Models/ThemeConfig/LayoutConfig";
const layout = new LayoutConfig(<any> onwheels, true)
new FeaturePipelineState(layout)