Exemple #1
0
 public RoomInfo()
 {
     this.selfInfo       = new PlayerUniqueID();
     this.roomOwner      = new PlayerUniqueID();
     this.roomAttrib     = new RoomAttrib();
     this.campMemberList = new ListView <MemberInfo> [3];
     for (int i = 0; i < 3; i++)
     {
         this.campMemberList[i] = new ListView <MemberInfo>();
     }
 }
Exemple #2
0
 public RoomInfo()
 {
     this.selfInfo       = new PlayerUniqueID();
     this.roomOwner      = new PlayerUniqueID();
     this.roomAttrib     = new RoomAttrib();
     this.campMemberList = new ListView <MemberInfo> [3];
     for (int i = 0; i < 3; i++)
     {
         this.campMemberList[i] = new ListView <MemberInfo>();
     }
     this.fromType = COM_ROOM_FROMTYPE.COM_ROOM_FROM_INTERNAL;
 }