예제 #1
0
파일: MainGame.cs 프로젝트: occnah/SnakeXNA
 public MainGame()
 {
     Instance = this;
     graphics = new GraphicsDeviceManager(this);
     Content.RootDirectory = "Content";
 }
예제 #2
0
 static void Main()
 {
     using (var game = new MainGame())
         game.Run();
 }