WaveTests MultipleWaves Method Delta Engine Documentation

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

public void MultipleWaves()
Examples

[Test]
public void MultipleWaves()
{
    new GhostWave(new Vector2D(0.2f, 0.5f), new Vector2D(0.8f, 0.5f), 5,
        Team.HumanYellow.ToColor());
    new GhostWave(new Vector2D(0.3f, 0.6f), new Vector2D(0.6f, 0.6f), 5,
        Team.ComputerTeal.ToColor());
    GameLogic.GhostSize = 0.8f;
    new GhostWave(new Vector2D(0.4f, 0.7f), new Vector2D(0.3f, 0.7f), 5,
        Team.ComputerTeal.ToColor());
}
See Also