LuaInterface.LuaEvent.Remove C# (CSharp) Method

Remove() public method

public Remove ( LuaFunction func, LuaTable obj ) : void
func LuaFunction
obj LuaTable
return void
        public void Remove(LuaFunction func, LuaTable obj)
        {
            if (func == null)
            {
                return;
            }

            _remove.BeginPCall();
            _remove.Push(self);
            _remove.Push(func);
            _remove.Push(obj);
            _remove.PCall();
            _remove.EndPCall();
        }