public Game1() : base() { graphics = new GraphicsDeviceManager(this); Content.RootDirectory = "Content"; // pretty ugly.. instance = this; }
static void Main() { using (var game = new Game1()) game.Run(); }