Files
Fishing2Server/Entity/Gate/PlayerManageComponent.cs
2025-07-27 12:34:04 +08:00

8 lines
160 B
C#

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