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.
21 lines
381 B
21 lines
381 B
3 years ago
|
using UnityEngine;
|
||
|
|
||
|
namespace ET
|
||
|
{
|
||
|
public enum RoleState
|
||
|
{
|
||
|
Normal = 0,
|
||
|
Freeze,
|
||
|
}
|
||
|
|
||
|
public class RoleInfo : Entity, IAwake
|
||
|
{
|
||
|
public string Name;
|
||
|
public int ServerId;
|
||
|
public int State;
|
||
|
public long AccountId;
|
||
|
public long LastLoginTime;
|
||
|
public long CreateTime;
|
||
|
public int Gender;
|
||
|
}
|
||
|
}
|