mirror of
https://github.com/Kiritow/MiniEngine.git
synced 2024-03-22 13:11:22 +08:00
11 lines
144 B
C++
11 lines
144 B
C++
|
#include "config.h"
|
||
|
|
||
|
namespace Global
|
||
|
{
|
||
|
void ErrorQuit(const char* ErrorMessage)
|
||
|
{
|
||
|
mlog(ErrorMessage);
|
||
|
exit(0);
|
||
|
}
|
||
|
}
|