BouncingLogoTests PressingSpacePausesLogoApp Method Delta Engine Documentation

Namespace: LogoApp.Tests
Assembly: LogoApp.Tests (in LogoApp.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void PressingSpacePausesLogoApp()
Examples

[Test]
public void PressingSpacePausesLogoApp()
{
    for (int i = 0; i < 10; i++)
        new BouncingLogo();
    new Command(() => Time.IsPaused = !Time.IsPaused).Add(new KeyTrigger(Key.Space));
}
See Also