Exemplo n.º 1
0
 public void InvokeMethode(HxBehaviour self, string methode)
 {
     self.GetType().GetMethod(methode)?.Invoke(self, null);
 }
Exemplo n.º 2
0
 public void InvokeMethode(HxBehaviour self, string methode, object?[]?parameters)
 {
     self.GetType().GetMethod(methode)?.Invoke(self, parameters);
 }