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