//Contructor public Game1() { graphics = new GraphicsDeviceManager(this); instance = this; //Unlocks framerate this.graphics.SynchronizeWithVerticalRetrace = false; base.IsFixedTimeStep = false; Content.RootDirectory = "Content"; }
static void Main() { using (var game = new Game1()) game.Run(); }