feat : 보스전 채널 생성, 파티 함께 채널 이동 구현
This commit is contained in:
@@ -32,4 +32,21 @@ public class PartyInfo
|
||||
{
|
||||
return PartyMemberIds.Count;
|
||||
}
|
||||
|
||||
public void DeepCopy(PartyInfo other)
|
||||
{
|
||||
this.PartyId = other.PartyId;
|
||||
this.PartyName = other.PartyName;
|
||||
this.LeaderId = other.LeaderId;
|
||||
this.PartyMemberIds.Clear();
|
||||
this.PartyMemberIds.AddRange(other.PartyMemberIds);
|
||||
}
|
||||
|
||||
public void DeepCopySemi(PartyInfo other)
|
||||
{
|
||||
this.PartyId = other.PartyId;
|
||||
this.PartyName = other.PartyName;
|
||||
this.LeaderId = other.LeaderId;
|
||||
this.PartyMemberIds = new List<int>();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user