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