Example #1
0
File: Stage.cs Project: CarimA/RPG
 public Stage(WebDebugger debugger)
 {
     _debugger            = debugger;
     _scenes              = new List <Scene>();
     _gameObjects         = new GameObjectList();
     _globalUpdateSystems = new SystemList <System>();
 }
Example #2
0
File: Scene.cs Project: CarimA/RPG
 public Scene()
 {
     _enterSystems  = new SystemList <StartupSystem>();
     _exitSystems   = new SystemList <StartupSystem>();
     _updateSystems = new SystemList <System>();
     _drawSystems   = new SystemList <System>();
     _subScenes     = new Stack <Scene>();
 }