InteractionTests PerformBuff Method Delta Engine Documentation

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

public void PerformBuff()
Examples

[Test]
public void PerformBuff()
{
    var effect = new BuffEffect("TestHpBuff");
    var interaction = new Interaction(tower, creep, adjustment, effect);
    interaction.Apply();
    Assert.AreEqual(204.0f, creep.GetStatValue("Hp"));
}
See Also