public Identificator(string name, int hash, UsageMethods usageMethod, Types type)
 {
     Name        = name;
     Hash        = hash;
     UsageMethod = usageMethod;
     Type        = type;
 }
예제 #2
0
 public VAR(string name, int hash, UsageMethods usageMethod, Types type)
     : base(name, hash, usageMethod, type)
 {
 }
예제 #3
0
 public METHOD(string name, int hash, UsageMethods usageMethod, Types type, string arguments)
     : base(name, hash, usageMethod, type)
 {
     Arguments = GetArgumets(arguments);
 }
예제 #4
0
 public CONST(string name, int hash, UsageMethods usageMethod, Types type, object value)
     : base(name, hash, usageMethod, type)
 {
     Value = value;
 }