Exemplo n.º 1
0
 public ArmorAddonData(string Tag = null)
     : base(Tag)
 {
     ArmorRating    = new Int16();
     ModulatesVoice = new NoYesShort();
     Unknown        = new byte[8];
 }
Exemplo n.º 2
0
 public ArmorAddonData(Int16 ArmorRating, NoYesShort ModulatesVoice, Byte[] Unknown)
 {
     this.ArmorRating    = ArmorRating;
     this.ModulatesVoice = ModulatesVoice;
     this.Unknown        = Unknown;
 }