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

IntegerLiteral() public method

public IntegerLiteral ( int value ) : System
value int
return System
            public IntegerLiteral(int value)
                : base(LuaValueType.Integer)
            {
                Value = value;
            }
LuaExpression.IntegerLiteral