SpecialAttackSelectorTests DragonAuraCannon 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 DragonAuraCannon()
Examples

[Test]
public void DragonAuraCannon()
{
    var player = new Player();
    player.Avatar.ActivatedSpecialAttack = AvatarAttack.DragonAuraCannon;
    player.Avatar.SpecialAttackBIsActivated = true;
    SpecialAttackSelector.SelectAttack(Vector2D.One);
    Assert.IsFalse(player.Avatar.SpecialAttackBIsActivated);
}
See Also