Obtains access to the SDL console.
(&mut self)
| 426 | |
| 427 | /// Obtains access to the SDL console. |
| 428 | pub fn console(&mut self) -> &mut SdlConsole { |
| 429 | self.console.as_mut().expect("Console must always be present") |
| 430 | } |
| 431 | |
| 432 | /// Obtains shared access to the SDL console. |
| 433 | pub fn console_ref(&self) -> &SdlConsole { |
no outgoing calls