| 255 | } |
| 256 | |
| 257 | void Engine::Exit(int32 exitCode, FatalErrorType error) |
| 258 | { |
| 259 | ASSERT(IsInMainThread()); |
| 260 | FatalError = error; |
| 261 | |
| 262 | // Call on exit event |
| 263 | OnExit(); |
| 264 | |
| 265 | // Exit application |
| 266 | exit(exitCode); |
| 267 | } |
| 268 | |
| 269 | void Engine::RequestExit(int32 exitCode, FatalErrorType error) |
| 270 | { |
nothing calls this directly
no test coverage detected