8 lines
160 B
C#
8 lines
160 B
C#
using Fantasy.Entitas;
|
|
|
|
namespace NB.Gate;
|
|
|
|
public sealed class PlayerManageComponent : Entity
|
|
{
|
|
public readonly Dictionary<long, Player> Players = new();
|
|
} |