private static void Main() { using (var game = new MatchGame()) { game.Run(); } }
public MatchGame() { Graphics = new GraphicsDeviceManager(this) { PreferredBackBufferHeight = 600, PreferredBackBufferWidth = 500 }; Content.RootDirectory = "Content"; IsMouseVisible = true; Instance = this; }