Ejemplo n.º 1
0
 public InviteInHavenBagOfferMessage InitInviteInHavenBagOfferMessage(CharacterMinimalInformations HostInformations, int TimeLeftBeforeCancel)
 {
     this.HostInformations     = HostInformations;
     this.TimeLeftBeforeCancel = TimeLeftBeforeCancel;
     return(this);
 }
Ejemplo n.º 2
0
 public InviteInHavenBagMessage InitInviteInHavenBagMessage(CharacterMinimalInformations GuestInformations, bool Accept)
 {
     this.GuestInformations = GuestInformations;
     this.Accept            = Accept;
     return(this);
 }
Ejemplo n.º 3
0
 public override void Deserialize(ICustomDataReader reader)
 {
     this.HostInformations = new CharacterMinimalInformations();
     this.HostInformations.Deserialize(reader);
 }
 public MapComplementaryInformationsDataInHavenBagMessage InitMapComplementaryInformationsDataInHavenBagMessage(CharacterMinimalInformations OwnerInformations, byte Theme, byte RoomId, byte MaxRoomId)
 {
     this.OwnerInformations = OwnerInformations;
     this.Theme             = Theme;
     this.RoomId            = RoomId;
     this.MaxRoomId         = MaxRoomId;
     return(this);
 }
Ejemplo n.º 5
0
 public InviteInHavenBagClosedMessage InitInviteInHavenBagClosedMessage(CharacterMinimalInformations HostInformations)
 {
     this.HostInformations = HostInformations;
     return(this);
 }