2020-03-25 18:07:36 +00:00
|
|
|
#include "Core.hpp"
|
|
|
|
|
2020-07-30 18:06:23 +00:00
|
|
|
std::string ExceptionHandler::_creatureLibLastException = "";
|
2020-08-16 15:41:56 +00:00
|
|
|
std::string ExceptionHandler::_creatureLibLastExceptionStacktrace = "Unset";
|
2020-07-30 18:06:23 +00:00
|
|
|
|
2020-04-14 13:43:30 +00:00
|
|
|
export const char* CreatureLib_C_GetLastException() { return ExceptionHandler::GetLastException(); }
|
2020-08-15 14:34:52 +00:00
|
|
|
export const char* CreatureLib_C_GetLastExceptionStacktrace() { return ExceptionHandler::GetLastExceptionStacktrace(); }
|