CommandTests BackWillRemoveRectangle Method Delta Engine Documentation

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

public void BackWillRemoveRectangle()
Examples

[Test]
public void BackWillRemoveRectangle()
{
    var rect = new FilledRect(new Rectangle(0.4f, 0.4f, 0.2f, 0.2f), Color.Green);
    new Command(Command.Back, () => { rect.IsActive = false; });
See Also