Files
Fishing2Server/Entity/Gate/GameAccountManageComponent.cs
2025-07-16 17:47:53 +08:00

8 lines
176 B
C#

using Fantasy.Entitas;
namespace Fantasy.Gate;
public sealed class GameAccountManageComponent : Entity
{
public readonly Dictionary<long, GameAccount> Accounts = new();
}