Exemplo n.º 1
0
        public YouBeat()
        {
            graphics = new GraphicsDeviceManager(this);
            Content.RootDirectory = "Content";

            Instance = this;
        }
Exemplo n.º 2
0
 static void Main()
 {
     using (Game game = new YouBeat()
     {
         IsFixedTimeStep = false
     })
     {
         game.Run();
     }
 }