StartupScreen StartGame Method Delta Engine Documentation

Namespace: FindTheWord
Assembly: FindTheWord (in FindTheWord.exe) Version: 1.1.1.0 (1.1.1)
Syntax

public void StartGame()
Remarks

Tests: FindTheWord.Tests.StartupScreenTests
Examples

1 unit tests call FindTheWord.StartupScreen.StartGame
[Test, Ignore]
public void RaisingGameStarted()
{
    int isGameStartedCount = 0;
    var screen = Resolve<StartupScreen>();
    screen.GameStarted += () => isGameStartedCount++;
    screen.StartGame();
    Assert.AreEqual(1, isGameStartedCount);
    Resolve<Window>().CloseAfterFrame();
}
See Also