mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-27 14:26:04 +03:00
13 lines
221 B
C++
13 lines
221 B
C++
#ifndef CONSOLE_CLIENT_HPP
|
|
#define CONSOLE_CLIENT_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
void ConsoleInitializeClientCommand();
|
|
|
|
void ConsoleInitializeClientCVar(const char* a1);
|
|
|
|
int32_t ConsoleLoadClientCVar(const char* a1);
|
|
|
|
#endif
|