BlocksContentTests AreFiveBrickBlocksAllowed Method Delta Engine Documentation

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

public void AreFiveBrickBlocksAllowed()
Examples

[Test, CloseAfterFirstFrame]
public void AreFiveBrickBlocksAllowed()
{
    var content = new JewelBlocksContent();
    Assert.IsTrue(content.AreFiveBrickBlocksAllowed);
    content.AreFiveBrickBlocksAllowed = false;
    Assert.IsFalse(content.AreFiveBrickBlocksAllowed);
}
See Also