Exemplo n.º 1
0
 public FactionData(string Tag = null)
     : base(Tag)
 {
     Flags1 = new FactionFlags1();
     Flags2 = new FactionFlags2();
     Unused = new byte[2];
 }
Exemplo n.º 2
0
 public FactionData(FactionFlags1 Flags1, FactionFlags2 Flags2, Byte[] Unused)
 {
     this.Flags1 = Flags1;
     this.Flags2 = Flags2;
     this.Unused = Unused;
 }