MovementTests FastCreepMovesAtDoubleSpeed Method Delta Engine Documentation

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

public void FastCreepMovesAtDoubleSpeed()
Examples

[Test, CloseAfterFirstFrame]
public void FastCreepMovesAtDoubleSpeed()
{
    creep.State.Fast = true;
    AdvanceTimeAndUpdateEntities(1);
    Assert.AreEqual(2.0f, creep.Position.X, 0.001f);
}
See Also