Files
Northbound/Assets/Scripts/ITeamMember.cs
2026-01-27 15:30:02 +09:00

11 lines
203 B
C#

namespace Northbound
{
/// <summary>
/// 팀에 속한 엔티티
/// </summary>
public interface ITeamMember
{
TeamType GetTeam();
void SetTeam(TeamType team);
}
}