示例#1
0
文件: App.cs 项目: CodeCow/GGLinux
 public App(Game1 game1)
 {
     this.GraphicsDevice = game1.GraphicsDevice;
        this.Content = game1.Content;
        isStarting = true;
 }
示例#2
0
 static void Main()
 {
     using (var game = new Game1())
         game.Run();
 }