MAYBE IF IMGUI JUST WORKEDDDDDDDDDDDD

This commit is contained in:
Ben
2019-10-04 22:03:07 +01:00
parent aeb6f46435
commit dbd96ca06f
10 changed files with 129 additions and 13 deletions

View File

@@ -90,8 +90,6 @@ typedef enum {
class Logger {
public:
std::stringstream outStream;
std::map<LogType, std::string> lookupTable;
Logger();
Logger& operator<< (const LogType type) {
@@ -119,6 +117,9 @@ public:
outStream << data;
return *this;
}
std::stringstream outStream;
std::map<LogType, std::string> lookupTable;
};
#endif