예제 #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();
 }