Is it possible to quit out of a Unreal game with a specific exit code? In Unity you can just Application.Quit(exitCode);
but I could not find anything regarding Unreal.
I know you can use the QuitGame-node or FGenericPlatformMisc::RequestExit(false);
in C++ but without the custom exit code that I am looking for.
Any ideas?