/// <summary> /// The main entry point for the application. /// </summary> static void Main(string[] args) { using (Fagblo game = new Fagblo()) { game.Run(); } }
public Fagblo() { Fagblo.instance = this; graphics = new GraphicsDeviceManager(this); graphics.PreferredBackBufferWidth = 1280; graphics.PreferredBackBufferHeight = 720; Content.RootDirectory = "Content"; }