public PortWebView( GlobalGameUISingleton gameUserInterface, PortViewModel viewModel ) : base(gameUserInterface, viewModel) { _gameUi = gameUserInterface; }
public PlanetWebView( GlobalGameUISingleton gameUi, PlanetViewModel viewModel ) : base(gameUi, viewModel) { _gameUi = gameUi; }
public WebViewBase( GlobalGameUISingleton gameUiSingleton, TViewModel colonyViewModel ) { _gameUserInterface = gameUiSingleton; ViewModel = colonyViewModel; }
public GameInterfaceWebView( GlobalGameUISingleton gameUserInterface, NewChatManager chatManager, GameInterfaceViewModel gameInterfaceViewModel ) : base(gameUserInterface, gameInterfaceViewModel) { _chatManager = chatManager; _chatManager.ChatAdded += (sender, args) => { AddChat(args.ChatJson); }; }
public ColonyWebView( GlobalGameUISingleton gameUiSingleton, ColonyViewModel colonyViewModel ) : base(gameUiSingleton, colonyViewModel) { }
public SpaceWebView( GlobalGameUISingleton gameUserInterface, SpaceViewModel viewModel ) : base(gameUserInterface, viewModel) { }