BlocksContentTests DoBlocksStartInARandomColumn 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 DoBlocksStartInARandomColumn()
Examples

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