Files
2026-03-05 11:39:06 +08:00

11 lines
274 B
C#

using Fantasy.Entitas;
using Fantasy.Network;
namespace Fantasy;
public sealed class GateUnit : Entity
{
public EntityReference<Session> Session;
public string UserName { get; set; }
public readonly Dictionary<int, long> Routes = new Dictionary<int, long>();
}