WaveTests CopyingWaveCopiesTheWaveData Method Delta Engine Documentation

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

public void CopyingWaveCopiesTheWaveData()
Examples

[Test]
public void CopyingWaveCopiesTheWaveData()
{
    var wave = new Wave(0.1f, 0.5f, "Cloth", "");
    var copiedWave = new Wave(wave);
    Assert.AreEqual("0.1, 0.5, 0, 1, Cloth", copiedWave.ToString());
}
See Also