| 1234567891011121314151617181920 |
- namespace ET.Server
- {
- [ComponentOf(typeof(Session))]
- public class SessionPlayerComponent : Entity, IAwake, IDestroy
- {
- private EntityRef<Player> player;
- public Player Player
- {
- get
- {
- return this.player;
- }
- set
- {
- this.player = value;
- }
- }
- }
- }
|