public GameConsoleFunction(GameConsoleObject owner, string functionName)
 {
     this.owner        = owner;
     this.functionName = functionName;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="GameConsoleProperty"/> class.
 /// </summary>
 /// <param name="owner">The owner.</param>
 /// <param name="propertyName">Name of the property.</param>
 public GameConsoleProperty(GameConsoleObject owner, string propertyName)
 {
     this.owner        = owner;
     this.propertyName = propertyName;
     this.Validate();
 }