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