PkmnLibAI/CInterface/Core.cpp

7 lines
374 B
C++
Raw Normal View History

2021-04-23 08:09:50 +00:00
#include "Core.hpp"
std::string ExceptionHandler::_pkmnLibAILastException = "";
std::string ExceptionHandler::_pkmnLibAILastExceptionStacktrace = "Unset";
export const char* pkmnlibai_C_GetLastException() { return ExceptionHandler::GetLastException(); }
export const char* pkmnlibai_C_GetLastExceptionStacktrace() { return ExceptionHandler::GetLastExceptionStacktrace(); }