feat : 파티 구조 뼈대 완성

This commit is contained in:
qornwh1
2026-03-08 21:48:34 +09:00
parent a5d3b48707
commit a53d838e24
5 changed files with 288 additions and 4 deletions

View File

@@ -0,0 +1,35 @@
namespace MMOserver.Game.Party;
public class PartyInfo
{
public static readonly int partyMemberMax = 3;
public int PartyId
{
get;
set;
}
public int LeaderId
{
get;
set;
}
public List<int> PartyMemberIds
{
get;
set;
} = new List<int>();
public string PartyName
{
get;
set;
} = "";
public int GetPartyMemberCount()
{
return PartyMemberIds.Count;
}
}