Exemple #1
0
 static int Awake(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         LuaPlayInterface obj = (LuaPlayInterface)ToLua.CheckObject <LuaPlayInterface>(L, 1);
         obj.Awake();
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
Exemple #2
0
 static int GetPlayID(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         LuaPlayInterface obj = (LuaPlayInterface)ToLua.CheckObject <LuaPlayInterface>(L, 1);
         int o = obj.GetPlayID();
         LuaDLL.lua_pushinteger(L, o);
         return(1);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }