Exemplo n.º 1
0
Arquivo: Program.cs Projeto: Chobin/SP
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (Game1 game = new Game1())
     {
         game.Run();
     }
 }
Exemplo n.º 2
0
 public OldScene(Game1 game)
     : base(game)
 {
     this.game = game;
     quadRender = new QuadRenderComponent(game);
     game.Components.Add(quadRender);
 }