FruitBlocksContent ClassDelta Engine Documentation
Loads FruitBlocks related content and settings View code on GitHub
Inheritance Hierarchy

System Object
  Blocks BlocksContent
    Blocks FruitBlocksContent

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

public class FruitBlocksContent : BlocksContent

The FruitBlocksContent type exposes the following members.

Constructors

  NameDescription
Public methodFruitBlocksContent
Initializes a new instance of the FruitBlocksContent class
Top
Methods

  NameDescription
Public methodGetFilenameWithoutPrefix (Inherited from BlocksContent.)
Public methodLoad T  (Inherited from BlocksContent.)
Top
Properties

  NameDescription
Public propertyAreFiveBrickBlocksAllowed (Inherited from BlocksContent.)
Public propertyDoBlocksStartInARandomColumn (Inherited from BlocksContent.)
Public propertyDoBricksSplitInHalfWhenRowFull (Inherited from BlocksContent.)
Public propertyPrefix (Inherited from BlocksContent.)
Top
Remarks

Tests: Blocks.Tests.FruitBlocksContentTests
Examples

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