Eintoo/GameServer/Server/Entity/Model/Gate/GameAccount/GameAccountManageComponent.cs
2025-04-22 15:31:25 +08:00

8 lines
188 B
C#

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