miduo_client/Assets/Source/Generate/UnityEngine_UI_Slider_Slide...

40 lines
976 B
C#

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