AGS.Plugin.Lua.LuaCodeDom.LuaBitLibrary.LuaBitLibrary C# (CSharp) 메소드

LuaBitLibrary() 정적인 개인적인 메소드

static private LuaBitLibrary ( ) : System
리턴 System
        static LuaBitLibrary()
        {
            Bit = new LuaExpression.GlobalAccess("bit");
            Bit_LShift = Bit.MakeIndex("lshift");
            Bit_RShift = Bit.MakeIndex("rshift");
            Bit_BXor = Bit.MakeIndex("bxor");
            Bit_BAnd = Bit.MakeIndex("band");
            Bit_BOr = Bit.MakeIndex("bor");

            Bit_LShift.ReturnType = LuaValueType.Integer;
        }
LuaBitLibrary