The Node - Mrcarrot1/KarrotObjectNotation GitHub Wiki
The node, represented by an instance of the KONNode
class, is the basic unit of KON syntax. A node represents an object or container for objects.
All valid KON files contain a single root node. Any node may contain any number of nodes, arrays, or values.
Note that while nodes may not contain multiple values with the same name, they may contain multiple nodes or arrays with the same name.
The syntax for a node is very simple:
NodeTitle
{
//Node contents
}