12345678910111213141516171819202122232425262728293031323334 |
- namespace ET.Server
- {
- [ChildOf(typeof(GamePlayerComponent))]
- public sealed class Player : Entity, IAwake<string>, IDestroy
- {
-
- public string Account { get; set; }
-
-
- public int LogicServerId { get; set; }
-
- public long CreateTime { get; set; }
-
- public long LoginTime { get; set; }
-
- public long LogoutTime { get; set; }
-
- public bool IsOnline { get; set; }
-
-
- public long RoomID { get; set; }
-
- public string AvatarUrl { get; set; }
-
- public string Name { get; set; }
-
- public int Sex { get; set; }
-
- public long Exp { get; set; }
-
- public int Level { get; set; }
- }
- }
|