Exemple #1
0
 /** Pushes given state onto the state stack causing it to become visible */
 static public void PushState(GuiState state)
 {
     StateList.Insert(0, state);
     state.Show();
 }