[server] Match CConsole constructor/destructor

This commit is contained in:
RD42
2023-10-28 23:27:44 +08:00
parent 6c6b831be6
commit 070fb0a4b2
2 changed files with 13 additions and 0 deletions

View File

@ -1,6 +1,16 @@
#include "main.h"
CConsole::CConsole()
{
}
CConsole::~CConsole()
{
ConsoleVariables.clear();
}
ConsoleVariable_s* CConsole::FindVariable(char* pVarName)
{
char VarName[256];