|
| void | Initialize () |
| |
| void | Add (string name, LuaCsFunc func, ACsMod owner=null) |
| |
| void | Add (string name, string identifier, LuaCsFunc func, ACsMod owner=null) |
| |
| bool | Exists (string name, string identifier) |
| |
| void | Remove (string name, string identifier) |
| |
| void | Clear () |
| |
| T | Call< T > (string name, params object[] args) |
| |
| object | Call (string name, params object[] args) |
| |
| string | Patch (string identifier, string className, string methodName, string[] parameterTypes, LuaCsPatchFunc patch, HookMethodType hookType=HookMethodType.Before) |
| |
| string | Patch (string identifier, string className, string methodName, LuaCsPatchFunc patch, HookMethodType hookType=HookMethodType.Before) |
| |
| string | Patch (string className, string methodName, string[] parameterTypes, LuaCsPatchFunc patch, HookMethodType hookType=HookMethodType.Before) |
| |
| string | Patch (string className, string methodName, LuaCsPatchFunc patch, HookMethodType hookType=HookMethodType.Before) |
| |
| bool | RemovePatch (string identifier, string className, string methodName, string[] parameterTypes, HookMethodType hookType) |
| |
| bool | RemovePatch (string identifier, string className, string methodName, HookMethodType hookType) |
| |
| void | HookMethod (string identifier, MethodBase method, LuaCsCompatPatchFunc patch, HookMethodType hookType=HookMethodType.Before, ACsMod owner=null) |
| |
| void | UnhookMethod (string identifier, MethodBase method, HookMethodType hookType=HookMethodType.Before) |
| |
|
| void | HookMethod (string identifier, string className, string methodName, string[] parameterNames, LuaCsCompatPatchFunc patch, HookMethodType hookMethodType=HookMethodType.Before) |
| |
| void | HookMethod (string identifier, string className, string methodName, LuaCsCompatPatchFunc patch, HookMethodType hookMethodType=HookMethodType.Before) |
| |
| void | HookMethod (string className, string methodName, LuaCsCompatPatchFunc patch, HookMethodType hookMethodType=HookMethodType.Before) |
| |
| void | HookMethod (string className, string methodName, string[] parameterNames, LuaCsCompatPatchFunc patch, HookMethodType hookMethodType=HookMethodType.Before) |
| |
| void | UnhookMethod (string identifier, string className, string methodName, string[] parameterNames, HookMethodType hookType=HookMethodType.Before) |
| |