Add server content data and mountableserver
This commit is contained in:
@ -8,6 +8,25 @@
|
||||
#include <map>
|
||||
#include <vector>
|
||||
|
||||
|
||||
class TextException : public std::exception {
|
||||
|
||||
std::string error_message;
|
||||
public:
|
||||
|
||||
TextException(std::string ex)
|
||||
{
|
||||
error_message = "TextException: ";
|
||||
error_message.append(ex);
|
||||
}
|
||||
|
||||
|
||||
|
||||
const char * what() const noexcept override
|
||||
{
|
||||
return error_message.c_str();
|
||||
}
|
||||
};
|
||||
namespace Tesses::Framework
|
||||
{
|
||||
void TF_Init();
|
||||
|
||||
Reference in New Issue
Block a user