Loads JewelBlocks related content and settings
View code on GitHub
Inheritance Hierarchy
Blocks BlocksContent
Blocks JewelBlocksContent
Namespace: Blocks
Assembly: Blocks (in Blocks.exe) Version: 1.1.1.0 (1.1.1)
Syntax
The JewelBlocksContent type exposes the following members.
Constructors
Name | Description | |
---|---|---|
![]() | JewelBlocksContent | Initializes a new instance of the JewelBlocksContent 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 JewelBlocksContent(); Assert.AreEqual("JewelBlocks_", content.Prefix); Assert.IsTrue(content.AreFiveBrickBlocksAllowed); Assert.IsFalse(content.DoBricksSplitInHalfWhenRowFull); }
See Also