Add Engine::ReportCrash event for custom crash reporting or handling

This commit is contained in:
Wojtek Figat
2025-01-24 20:15:17 +01:00
parent cf40facefe
commit b36e55446f
3 changed files with 10 additions and 1 deletions

View File

@@ -71,6 +71,7 @@ Action Engine::Draw;
Action Engine::Pause;
Action Engine::Unpause;
Action Engine::RequestingExit;
Delegate<StringView, void*> Engine::ReportCrash;
FatalErrorType Engine::FatalError = FatalErrorType::None;
bool Engine::IsRequestingExit = false;
int32 Engine::ExitCode = 0;