Example #1
0
        {
            using (TestGame game = new TestGame())
            {
                game.Run();
            }
        }
    }
#endif
}
Example #2
0
		static void Main ( string[] args )
		{
			Trace.Listeners.Add( new ColoredTraceListener() );

			using ( var game = new TestGame() ) {
				game.Run(args);
			}
		}
 public Scene(TestGame game, int width, int height)
 {
     Game   = game;
     Width  = width;
     Height = height;
 }
Example #4
0
 static void Main()
 {
     using (TestGame game = new TestGame())
         game.Run();
 }
Example #5
0
 public Scene (TestGame game, int width, int height) {
     Game = game;
     Width = width;
     Height = height;
 }