lua_unref() public static method

public static lua_unref ( IntPtr luaState, int reference ) : void
luaState IntPtr
reference int
return void
コード例 #1
0
 public void LuaUnRef(int reference)
 {
     LuaDLL.lua_unref(L, reference);
 }
コード例 #2
0
ファイル: Lua.cs プロジェクト: krikelin/LerosClient
 /*
  * Lets go of a previously allocated reference to a table, function
  * or userdata
  */
 internal void dispose(int reference)
 {
     LuaDLL.lua_unref(luaState, reference);
 }