예제 #1
0
        public TClone()
        {
            if (instance != null)
            {
                Exit();
            }
            instance = this;

            graphics = new GraphicsDeviceManager(this);

            graphics.PreferredBackBufferWidth  = 384;
            graphics.PreferredBackBufferHeight = 432;
            Content.RootDirectory = "Content";
        }
예제 #2
0
파일: Program.cs 프로젝트: SquareMan/TClone
 static void Main()
 {
     using (var game = new TClone())
         game.Run();
 }