Exemple #1
0
 public Screens(RacerGame parentGame)
 {
     _parentGame = parentGame;
 }
Exemple #2
0
 public Screens(RacerGame parentGame)
 {
     _parentGame = parentGame;
 }
Exemple #3
0
        /// <summary>
        /// Entry point called by the ConsoleBootLoader project
        /// </summary>
        /// <param name="args">Array of object references to the hardware features</param>
        public static void Run(object[] args)
        {
            var thread = new RacerGame(new ConsoleHardwareConfig(args)).Run();

            thread.Join();
        }