public App(Game1 game1) { this.GraphicsDevice = game1.GraphicsDevice; this.Content = game1.Content; isStarting = true; }
static void Main() { using (var game = new Game1()) game.Run(); }