123456789101112131415161718192021222324252627282930 |
- namespace ET.Server
- {
-
-
-
- public class PlayerMapInfo: Entity, IAwake
- {
- public int historyMapId { get; set; }
- public long historyMapInstanceId { get; set; }
- public float historyX { get; set; }
- public float historyY { get; set; }
- public float historyDirection { get; set; }
- public int bornMapId { get; set; }
- public long bornMapInstanceId { get; set; }
- public float bornX { get; set; }
- public float bornY { get; set; }
- public int mapId { get; set; }
- public long mapInstanceId { get; set; }
- public float x { get; set; }
- public float y { get; set; }
- public float direction { get; set; }
- public int hp { get; set; }
- public int mp { get; set; }
-
- public int recMaxHP { get; set; }
- }
- }
|