fix(console): add command category enum

This commit is contained in:
superp00t 2023-08-16 16:43:55 -04:00
parent 384e52c7d1
commit 0397579ca9
2 changed files with 17 additions and 0 deletions

View File

@ -1,4 +1,7 @@
#include "console/CVar.hpp"
#include "console/Types.hpp"
#include "console/Line.hpp"
#include <storm/String.hpp>
bool CVar::m_needsSave;

View File

@ -14,6 +14,20 @@ enum COLOR_T {
NUM_COLORTYPES,
};
enum CATEGORY {
DEBUG,
GRAPHICS,
CONSOLE,
COMBAT,
GAME,
DEFAULT,
NET,
SOUND,
GM,
NONE,
LAST
};
enum CONSOLERESIZESTATE {
CS_NONE,
CS_STRETCH,