feat(console): add HIGHLIGHTSTATE enum

This commit is contained in:
Tristan Cormier 2023-04-01 15:08:04 -04:00
parent 9d0487c8ce
commit 219fb1aad6

View File

@ -3,6 +3,14 @@
#include "gx/CGxFormat.hpp"
enum HIGHLIGHTSTATE
{
HS_NONE = 0x0,
HS_HIGHLIGHTING = 0x1,
HS_ENDHIGHLIGHT = 0x2,
NUM_HIGHLIGHTSTATES
};
struct DefaultSettings {
CGxFormat format;
};