ClothCreepStateChangerTests NonClothCreepsShouldBeIgnored 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 NonClothCreepsShouldBeIgnored()
Examples

[Test, CloseAfterFirstFrame]
public void NonClothCreepsShouldBeIgnored()
{
    var glassCreep = new Creep(CreepType.Glass, Vector3D.Zero);
    ClothCreepStateChanger.ChangeStatesIfClothCreep(TowerType.Acid, glassCreep);
    Assert.AreEqual(creep.State.Wet, glassCreep.State.Wet);
}
See Also