14 lines
289 B
C#
14 lines
289 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 long GameSceneRouteId;
|
|
public long ChatSceneRouteId;
|
|
public EntityReference<Session> Session;
|
|
} |