fix(console): remove duplicate CATEGORY

This commit is contained in:
superp00t 2023-08-16 17:02:55 -04:00
parent 3c7300a614
commit c05d229b2e

View File

@ -1,6 +1,8 @@
#ifndef CONSOLE_COMMAND_HPP
#define CONSOLE_COMMAND_HPP
#include "console/Types.hpp"
#include <storm/Hash.hpp>
#include <cstdint>
@ -12,20 +14,6 @@
#define CONSOLE_HISTORY_DEPTH 32
#define CONSOLE_NOHELP nullptr
enum CATEGORY {
DEBUG,
GRAPHICS,
CONSOLE,
COMBAT,
GAME,
DEFAULT,
NET,
SOUND,
GM,
NONE,
LAST
};
typedef int32_t (*COMMANDHANDLER)(const char*, const char*);
class CONSOLECOMMAND : public TSHashObject<CONSOLECOMMAND, HASHKEY_STRI> {