| 248 | } |
| 249 | |
| 250 | ExitCode Platform::main_loop() |
| 251 | { |
| 252 | ExitCode exit_code = ExitCode::Success; |
| 253 | while (exit_code == ExitCode::Success) |
| 254 | { |
| 255 | exit_code = main_loop_frame(); |
| 256 | } |
| 257 | |
| 258 | return exit_code; |
| 259 | } |
| 260 | |
| 261 | void Platform::update() |
| 262 | { |