| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //this source code was auto-generated by tolua#, do not modify it
- using System;
- using LuaInterface;
- public class UIJoystick_OnDragEventWrap
- {
- public static void Register(LuaState L)
- {
- L.BeginClass(typeof(UIJoystick.OnDragEvent), typeof(UnityEngine.Events.UnityEvent<UnityEngine.Vector2,int>));
- L.RegFunction("New", _CreateUIJoystick_OnDragEvent);
- L.RegFunction("__tostring", ToLua.op_ToString);
- L.EndClass();
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int _CreateUIJoystick_OnDragEvent(IntPtr L)
- {
- try
- {
- int count = LuaDLL.lua_gettop(L);
- if (count == 0)
- {
- UIJoystick.OnDragEvent obj = new UIJoystick.OnDragEvent();
- ToLua.PushObject(L, obj);
- return 1;
- }
- else
- {
- return LuaDLL.luaL_throw(L, "invalid arguments to ctor method: UIJoystick.OnDragEvent.New");
- }
- }
- catch (Exception e)
- {
- return LuaDLL.toluaL_exception(L, e);
- }
- }
- }
|