2020-04-14 14:36:54 +00:00
|
|
|
#include "Core.hpp"
|
|
|
|
|
2020-07-30 18:06:41 +00:00
|
|
|
std::string ExceptionHandler::_pkmnLibLastException = "";
|
2021-01-22 13:11:03 +00:00
|
|
|
std::string ExceptionHandler::_pkmnLibLastExceptionStacktrace = "Unset";
|
|
|
|
|
|
|
|
export const char* PkmnLib_C_GetLastException() { return ExceptionHandler::GetLastException(); }
|
|
|
|
export const char* PkmnLib_C_GetLastExceptionStacktrace() { return ExceptionHandler::GetLastExceptionStacktrace(); }
|