mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
18 lines
293 B
C++
18 lines
293 B
C++
#include "console/Client.hpp"
|
|
#include "CVar.hpp"
|
|
|
|
static const char* s_filename;
|
|
|
|
void ConsoleInitializeClientCommand() {
|
|
// TODO
|
|
}
|
|
|
|
void ConsoleInitializeClientCVar(const char* filename) {
|
|
s_filename = filename;
|
|
|
|
CVar::Initialize();
|
|
|
|
// TODO
|
|
// CVar::Load(s_filename);
|
|
}
|