Class Rules
Represents the rules of the Unreal2 game.
public class Rules- Inheritance
- 
      
      Rules
- Inherited Members
Properties
Data
A private dictionary to hold the data.
[JsonExtensionData]
public Dictionary<string, object> Data { get; set; }Property Value
this[string]
Gets or sets the value associated with the specified key.
public string this[string key] { get; set; }Parameters
- keystring
- The key of the value to get or set. 
Property Value
- string
- The value associated with the specified key. 
Mutators
Gets or sets the list of mutators.
[JsonPropertyName("Mutators")]
public List<string> Mutators { get; set; }