/// <summary> /// Start up the game/engine /// </summary> private static void StartGame() { using (CutlassEngine engine = new CutlassEngine()) { CutlassEngine.Game = engine; SetupScene(); engine.Run(); } }
/// <summary> /// Constructs a new screen manager component. /// </summary> public ScreenManager(CutlassEngine engine) : base(engine) { }