예제 #1
0
파일: YouBeat.cs 프로젝트: nobbele/YouBeat
        public YouBeat()
        {
            graphics = new GraphicsDeviceManager(this);
            Content.RootDirectory = "Content";

            Instance = this;
        }
예제 #2
0
 static void Main()
 {
     using (Game game = new YouBeat()
     {
         IsFixedTimeStep = false
     })
     {
         game.Run();
     }
 }