Exemplo n.º 1
0
        public MatchGame()
        {
            graphics = new GraphicsDeviceManager(this);
            Content.RootDirectory = Constants.ResourcesRoot;

            IsMouseVisible           = true;
            Window.AllowUserResizing = false;
            Window.Title             = "GameForest Test task";


            instance = this;
        }
Exemplo n.º 2
0
 static void Main()
 {
     using (var game = new MatchGame())
         game.Run();
 }