* Toggles the full-screen flag. Used by windows to * keep the previous screen in display while the window * is still "popping up". */
| 103 | * is still "popping up". |
| 104 | */ |
| 105 | void State::toggleScreen() |
| 106 | { |
| 107 | _screen = !_screen; |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Initializes the state and its child elements. This is |