13 lines
296 B
C#
13 lines
296 B
C#
using Fantasy.Entitas;
|
|
using Fantasy.Network;
|
|
|
|
namespace NB.Gate;
|
|
|
|
public class GateUnit : Entity
|
|
{
|
|
public bool Kick;
|
|
public long AccountID;
|
|
public int Region;
|
|
public Dictionary<int,long> SceneRoutes = new Dictionary<int, long>();
|
|
public EntityReference<Session> Session;
|
|
} |