Inheritance Hierarchy
FindTheWord NextLevelScreen
Namespace: FindTheWord
Assembly: FindTheWord (in FindTheWord.exe) Version: 1.1.1.0 (1.1.1)
Syntax
The NextLevelScreen type exposes the following members.
Constructors
Name | Description | |
---|---|---|
![]() | NextLevelScreen | Initializes a new instance of the NextLevelScreen class |
Methods
Name | Description | |
---|---|---|
![]() | HideAndStartNextLevel | |
![]() | ShowAndWaitForInput |
Events
Name | Description | |
---|---|---|
![]() | StartNextLevel |
Remarks
Examples
[Test, Ignore] public void WaitForLevelAdvance() { var nextLevelScreen = new NextLevelScreen(); nextLevelScreen.ShowAndWaitForInput(); bool levelStartRaised = false; nextLevelScreen.StartNextLevel += () => levelStartRaised = true; nextLevelScreen.HideAndStartNextLevel(); Assert.IsTrue(levelStartRaised); }
See Also