Inheritance Hierarchy
FindTheWord Game
Namespace: FindTheWord
Assembly: FindTheWord (in FindTheWord.exe) Version: 1.1.1.0 (1.1.1)
Syntax
The Game type exposes the following members.
Constructors
Name | Description | |
---|---|---|
Game | Initializes a new instance of the Game class |
Remarks
Examples
[Test, Ignore] public void ShowScreen() { Resolve<Window>().ViewportPixelSize = new Size(1280, 800); var screen = new GameScreen(); screen.FadeIn(); screen.StartNextLevel(); }
[Test, Ignore] public void InitializeGame() { var startupScreen = Resolve<StartupScreen>(); var gameScreen = Resolve<GameScreen>(); new Game(startupScreen, gameScreen); startupScreen.StartGame(); Assert.IsTrue(startupScreen.IsVisible); }
See Also