MSScreen is an MSPanel that covers the entire computer screen.
Inheritance: MSFacadePanel
Example #1
0
 protected void ChangeToScreen(MSScreen screen, Game game)
 {
     MoodSwing moodSwing = (MoodSwing)game;
     moodSwing.CurrentScreen.ResetHovers();
     moodSwing.CurrentScreen.HasFocus = false;
     moodSwing.CurrentScreen = screen;
     moodSwing.CurrentScreen.HasFocus = true;
     moodSwing.Notifier.Reset();
 }
Example #2
0
 public void ReturnFocusTo(MSScreen parent)
 {
     this.parent = parent;
     dirtyParent = false;
 }