Beispiel #1
0
 public NetworkGuildStandard Build()
 {
     return(new NetworkGuildStandard
     {
         BackgroundIcon = BackgroundIcon.Build(),
         ForegroundIcon = ForegroundIcon.Build(),
         ScanLines = ScanLines.Build()
     });
 }
 public void Read(GamePacketReader reader)
 {
     BackgroundIcon.Read(reader);
     ForegroundIcon.Read(reader);
     ScanLines.Read(reader);
 }
 public void Write(GamePacketWriter writer)
 {
     BackgroundIcon.Write(writer);
     ForegroundIcon.Write(writer);
     ScanLines.Write(writer);
 }