예제 #1
0
 public EnchantData(EnchantType Type, Byte[] Unused1, Byte[] Unused2, EnchantFlags Flags, Byte[] Unused3)
 {
     this.Type    = Type;
     this.Unused1 = Unused1;
     this.Unused2 = Unused2;
     this.Flags   = Flags;
     this.Unused3 = Unused3;
 }
예제 #2
0
 public EnchantData(string Tag = null)
     : base(Tag)
 {
     Type    = new EnchantType();
     Unused1 = new byte[4];
     Unused2 = new byte[4];
     Flags   = new EnchantFlags();
     Unused3 = new byte[3];
 }