miduo_client/Assets/Source/Generate/UnityEngine_UI_Scrollbar_Sc...

40 lines
997 B
C#

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