First Commit

This commit is contained in:
2022-10-30 23:44:30 +01:00
commit fdd1e361c0
11 changed files with 251 additions and 0 deletions

22
ErrorHandler.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef ERRORHANDLER_H
#define ERRORHANDLER_H
#include <iostream>
#include <SDL2/SDL.h>
enum class ErrorType{
DEFAULT = -1,
SDL_ERROR
};
class ErrorHandler
{
private:
public:
static bool send(ErrorType e, std::string message);
};
#endif /* ERRORHANDLER_H */