Exemplo n.º 1
0
 public void HookScript(EditBoxHandler handler, Action <IUIObject, object, object, object, object> function)
 {
     this.scriptHandler.HookScript(handler, function);
 }
Exemplo n.º 2
0
 public Action <IEditBox, object, object, object, object> GetScript(EditBoxHandler handler)
 {
     return(this.scriptHandler.GetScript(handler));
 }
Exemplo n.º 3
0
 public bool HasScript(EditBoxHandler handler)
 {
     return(this.scriptHandler.HasScript(handler));
 }
Exemplo n.º 4
0
 public void SetScript(EditBoxHandler handler, Action <IUIObject> function)
 {
     this.scriptHandler.SetScript(handler, function);
 }