JewelBlocksContent ClassDelta Engine Documentation
Loads JewelBlocks related content and settings View code on GitHub
Inheritance Hierarchy

System Object
  Blocks BlocksContent
    Blocks JewelBlocksContent

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

public class JewelBlocksContent : BlocksContent

The JewelBlocksContent type exposes the following members.

Constructors

  NameDescription
Public methodJewelBlocksContent
Initializes a new instance of the JewelBlocksContent 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.JewelBlocksContentTests
Examples

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