Loads FruitBlocks related content and settings
View code on GitHub
Inheritance Hierarchy
Blocks BlocksContent
Blocks FruitBlocksContent
Namespace: Blocks
Assembly: Blocks (in Blocks.exe) Version: 1.1.1.0 (1.1.1)
Syntax
The FruitBlocksContent type exposes the following members.
Constructors
Name | Description | |
---|---|---|
FruitBlocksContent | Initializes a new instance of the FruitBlocksContent class |
Methods
Name | Description | |
---|---|---|
GetFilenameWithoutPrefix | (Inherited from BlocksContent.) | |
Load T | (Inherited from BlocksContent.) |
Properties
Name | Description | |
---|---|---|
AreFiveBrickBlocksAllowed | (Inherited from BlocksContent.) | |
DoBlocksStartInARandomColumn | (Inherited from BlocksContent.) | |
DoBricksSplitInHalfWhenRowFull | (Inherited from BlocksContent.) | |
Prefix | (Inherited from BlocksContent.) |
Remarks
Examples
[Test, CloseAfterFirstFrame] public void Constructor() { var content = new FruitBlocksContent(); Assert.AreEqual("FruitBlocks_", content.Prefix); Assert.IsTrue(content.AreFiveBrickBlocksAllowed); Assert.IsTrue(content.DoBricksSplitInHalfWhenRowFull); }
See Also