Implement basic scene manager with ability to switch between scenes

This commit is contained in:
Dennis Schoepf 2021-07-18 14:11:38 +02:00
parent 9063b45180
commit f9079e4823
7 changed files with 75 additions and 21 deletions

View file

@ -1,3 +1,4 @@
export enum Scenes {
OVERVIEW = 'OVERVIEW',
LEGACY = 'LEGACY',
}