Soundbank BlockAffixed Property Delta Engine Documentation

Namespace: Blocks
Assembly: Blocks (in Blocks.exe) Version: 1.1.1.0 (1.1.1)
Syntax

public Sound BlockAffixed { get; }

Property Value

Type: Sound
Remarks

Tests: Blocks.Tests.SoundbankTests
Examples

1 unit tests call Blocks.Soundbank.BlockAffixed
[Test, CloseAfterFirstFrame]
public void Constructor()
{
    var soundbank = new Soundbank(new JewelBlocksContent());
    Assert.IsNotNull(soundbank.BlockAffixed);
    Assert.IsNotNull(soundbank.BlockCouldNotMove);
    Assert.IsNotNull(soundbank.BlockMoved);
    Assert.IsNotNull(soundbank.GameLost);
    Assert.IsNotNull(soundbank.MultipleRowsRemoved);
    Assert.IsNotNull(soundbank.RowRemoved);
}
See Also