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