示例#1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (Game1 game = new Game1())
     {
         game.Run();
     }
 }
示例#2
0
文件: Game1.cs 项目: psykano/STFU-xna
 public DebugComponent(Game1 game, ContentManager content, GraphicsDeviceManager graphics)
     : base(game)
 {
     this.game = game;
     this.content = content;
     this.graphics = graphics;
     debugTextTimer = new Timer();
 }