| 225 | } |
| 226 | |
| 227 | void InGameConsole::Toggle() |
| 228 | { |
| 229 | if (_isOpen) |
| 230 | { |
| 231 | Close(); |
| 232 | } |
| 233 | else |
| 234 | { |
| 235 | Open(); |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | void InGameConsole::WriteLine(const std::string& input, FormatToken colourFormat) |
| 240 | { |
no test coverage detected