8 lines
150 B
C#
8 lines
150 B
C#
using Fantasy.Entitas;
|
|
|
|
namespace NB.Club;
|
|
|
|
public class ClubManageComponent : Entity
|
|
{
|
|
public readonly Dictionary<long, Club> Clubs = new();
|
|
} |