AGS.Plugin.Lua.LuaCodeDom.LuaExpression.UnOp.UnOp C# (CSharp) Method

UnOp() public method

public UnOp ( LuaUnaryOperatorType type, LuaExpression operand ) : System
type LuaUnaryOperatorType
operand LuaExpression
return System
            public UnOp(LuaUnaryOperatorType type, LuaExpression operand)
            {
                OpType = type;
                Operand = operand;
            }
LuaExpression.UnOp