8 lines
176 B
C#
8 lines
176 B
C#
using Fantasy.Entitas;
|
|
|
|
namespace Fantasy.Gate;
|
|
|
|
public sealed class GameAccountManageComponent : Entity
|
|
{
|
|
public readonly Dictionary<long, GameAccount> Accounts = new();
|
|
} |