SpecialAttackSelectorTests PenguinCarpetBombing Method Delta Engine Documentation

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

public void PenguinCarpetBombing()
Examples

[Test, Timeout(5000)]
public void PenguinCarpetBombing()
{
    var player = new Player("", CreepyTowers.Content.Avatars.Penguin);
    player.Avatar.ActivatedSpecialAttack = AvatarAttack.PenguinCarpetBombing;
    player.Avatar.SpecialAttackBIsActivated = true;
    SpecialAttackSelector.SelectAttack(Vector2D.One);
    Assert.IsFalse(player.Avatar.SpecialAttackBIsActivated);
}
See Also