You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
409 B

using NLog.LayoutRenderers;
namespace ET
{
public enum PlayerState
{
Disconnect,
Gate,
Game,
}
public sealed class Player : Entity, IAwake<string>, IAwake<long, long>
{
public long AccountId { get; set; }
public long SessionInstanceId { get; set; }
public long UnitId { get; set; }
public PlayerState PlayerState { get; set; }
public Session ClientSession { get; set; }
}
}