예제 #1
0
파일: Main.cs 프로젝트: fipso/Space-Game
        public Main()
            : base()
        {
            instance = this;

            graphics = new GraphicsDeviceManager(this);
            Content.RootDirectory = "Content";

            graphics.PreferredBackBufferWidth = 1200;
            graphics.PreferredBackBufferHeight = 800;

            this.Window.Title = "Space-Game by fipso (Beta 0.5)";
        }
예제 #2
0
파일: Program.cs 프로젝트: fipso/Space-Game
 static void Main()
 {
     using (var game = new Main())
         game.Run();
 }