BlocksContent DoBlocksStartInARandomColumn Property Delta Engine Documentation

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

public bool DoBlocksStartInARandomColumn { get; set; }

Property Value

Type: Boolean
Remarks

Tests: Blocks.Tests.BlocksContentTests
Examples

1 unit tests call Blocks.BlocksContent.DoBlocksStartInARandomColumn
[Test, CloseAfterFirstFrame]
public void DoBlocksStartInARandomColumn()
{
    var content = new JewelBlocksContent();
    Assert.IsFalse(content.DoBlocksStartInARandomColumn);
    content.DoBlocksStartInARandomColumn = true;
    Assert.IsTrue(content.DoBlocksStartInARandomColumn);
}
See Also