コード例 #1
0
ファイル: App.cs プロジェクト: CodeCow/GGLinux
 public App(Game1 game1)
 {
     this.GraphicsDevice = game1.GraphicsDevice;
        this.Content = game1.Content;
        isStarting = true;
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: CodeCow/GGLinux
 static void Main()
 {
     using (var game = new Game1())
         game.Run();
 }