public static AllegianceInfoResponseEvent read(BinaryReader binaryReader) { AllegianceInfoResponseEvent newObj = new AllegianceInfoResponseEvent(); newObj.target = binaryReader.ReadUInt32(); newObj.prof = AllegianceProfile.read(binaryReader); return(newObj); }
public static AllegianceUpdate read(BinaryReader binaryReader) { AllegianceUpdate newObj = new AllegianceUpdate(); newObj.allegianceProfile = AllegianceProfile.read(binaryReader); newObj.etype = binaryReader.ReadUInt32(); return(newObj); }