Beispiel #1
0
 public static void RunGame(Game game)
 {
     game.Go();
 }
Beispiel #2
0
            public InitialState(Game game, Color splashScreenColor)
                : base(game)
            {
                _timer = new Time.Timer(2000);

                Color fullcolor = splashScreenColor;

                r = fullcolor.R;
                g = fullcolor.G;
                b = fullcolor.B;
            }