コード例 #1
0
ファイル: Screens.cs プロジェクト: einart74/NetduinoHelpers
 public Screens(RacerGame parentGame)
 {
     _parentGame = parentGame;
 }
コード例 #2
0
ファイル: Screens.cs プロジェクト: josemotta/Netduino
 public Screens(RacerGame parentGame)
 {
     _parentGame = parentGame;
 }
コード例 #3
0
ファイル: Program.cs プロジェクト: bleroy/netduinohelpers
        /// <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();
        }