mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-13 12:55:58 +03:00
fix(console): add command category enum
This commit is contained in:
parent
384e52c7d1
commit
0397579ca9
@ -1,4 +1,7 @@
|
|||||||
#include "console/CVar.hpp"
|
#include "console/CVar.hpp"
|
||||||
|
#include "console/Types.hpp"
|
||||||
|
#include "console/Line.hpp"
|
||||||
|
|
||||||
#include <storm/String.hpp>
|
#include <storm/String.hpp>
|
||||||
|
|
||||||
bool CVar::m_needsSave;
|
bool CVar::m_needsSave;
|
||||||
|
|||||||
@ -14,6 +14,20 @@ enum COLOR_T {
|
|||||||
NUM_COLORTYPES,
|
NUM_COLORTYPES,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum CATEGORY {
|
||||||
|
DEBUG,
|
||||||
|
GRAPHICS,
|
||||||
|
CONSOLE,
|
||||||
|
COMBAT,
|
||||||
|
GAME,
|
||||||
|
DEFAULT,
|
||||||
|
NET,
|
||||||
|
SOUND,
|
||||||
|
GM,
|
||||||
|
NONE,
|
||||||
|
LAST
|
||||||
|
};
|
||||||
|
|
||||||
enum CONSOLERESIZESTATE {
|
enum CONSOLERESIZESTATE {
|
||||||
CS_NONE,
|
CS_NONE,
|
||||||
CS_STRETCH,
|
CS_STRETCH,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user