public WebGamePlatform(Game game)
            : base(game)
        {
            Window = new WebGameWindow(this);

            _view = (WebGameWindow)Window;
        }
Exemplo n.º 2
0
 public WebGamePlatform(Game game)
     : base(game)
 {
     Window = _view = new WebGameWindow(game);
 }
Exemplo n.º 3
0
 public WebGamePlatform(Game game)
     : base(game)
 {
     Window = new WebGameWindow(this);
 }