7 lines
366 B
C++
7 lines
366 B
C++
#include "Core.hpp"
|
|
|
|
std::string ExceptionHandler::_pkmnLibLastException = "";
|
|
std::string ExceptionHandler::_pkmnLibLastExceptionStacktrace = "Unset";
|
|
|
|
export const char* PkmnLib_C_GetLastException() { return ExceptionHandler::GetLastException(); }
|
|
export const char* PkmnLib_C_GetLastExceptionStacktrace() { return ExceptionHandler::GetLastExceptionStacktrace(); } |