namespace Model { [ObjectSystem] public class SessionComponentSystem : ObjectSystem, IAwake { public void Awake() { this.Get().Awake(); } } public class SessionComponent: Component { public static SessionComponent Instance; public Session Session; public void Awake() { Instance = this; } public override void Dispose() { if (this.Id == 0) { return; } base.Dispose(); this.Session.Dispose(); this.Session = null; Instance = null; } } }