MapTests MonsterKillAddsThreeToScore Method Delta Engine Documentation

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

public void MonsterKillAddsThreeToScore()
Examples

[Test, CloseAfterFirstFrame]
public void MonsterKillAddsThreeToScore()
{
    map.AddToScore("monster");
    Assert.AreEqual(3, map.score);
    Assert.AreEqual("Score: 3", map.scoreText.Text);
}
See Also