feat : 파티 패킷 추가 / 채널 접속시 모든 파티 리스트 전달

This commit is contained in:
qornwh1
2026-03-10 09:40:00 +09:00
parent a3bcbd073e
commit 9828b967a1
4 changed files with 88 additions and 35 deletions

View File

@@ -119,6 +119,12 @@ public class PartyManager
return true;
}
// 전체 파티 목록 조회
public IEnumerable<PartyInfo> GetAllParties()
{
return parties.Values;
}
// 조회
public PartyInfo? GetParty(int partyId)
{