Exemple #1
0
        protected void OnShow( Object Sender, INotification Notification )
        {
            this.screen = new LobbyScreen( this.Component );

            this.screen.OnAccountClicked += this.OnAccountClicked;
            this.screen.OnSettingsClicked += this.OnSettingsClicked;
            this.screen.OnExitClicked += this.OnExitClicked;

            this.screen.Initialize();
            this.screen.Show();
        }
Exemple #2
0
        protected override void Dispose()
        {
            this.screen = null;

            base.Dispose();
        }