BlocksContent AreFiveBrickBlocksAllowed Property Delta Engine Documentation

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

public bool AreFiveBrickBlocksAllowed { get; set; }

Property Value

Type: Boolean
Remarks

Tests: Blocks.Tests.BlocksContentTests
Remarks

Tests: Blocks.Tests.FruitBlocksContentTests
Remarks

Tests: Blocks.Tests.JewelBlocksContentTests
Examples

1 unit tests call Blocks.BlocksContent.AreFiveBrickBlocksAllowed
[Test, CloseAfterFirstFrame]
public void AreFiveBrickBlocksAllowed()
{
    var content = new JewelBlocksContent();
    Assert.IsTrue(content.AreFiveBrickBlocksAllowed);
    content.AreFiveBrickBlocksAllowed = false;
    Assert.IsFalse(content.AreFiveBrickBlocksAllowed);
}
Examples

1 unit tests call Blocks.BlocksContent.AreFiveBrickBlocksAllowed
[Test, CloseAfterFirstFrame]
public void Constructor()
{
    var content = new FruitBlocksContent();
    Assert.AreEqual("FruitBlocks_", content.Prefix);
    Assert.IsTrue(content.AreFiveBrickBlocksAllowed);
    Assert.IsTrue(content.DoBricksSplitInHalfWhenRowFull);
}
Examples

1 unit tests call Blocks.BlocksContent.AreFiveBrickBlocksAllowed
[Test, CloseAfterFirstFrame]
public void Constructor()
{
    var content = new JewelBlocksContent();
    Assert.AreEqual("JewelBlocks_", content.Prefix);
    Assert.IsTrue(content.AreFiveBrickBlocksAllowed);
    Assert.IsFalse(content.DoBricksSplitInHalfWhenRowFull);
}
See Also