mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-11-03 17:56:04 +03:00
15 lines
258 B
C++
15 lines
258 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);
|
|
|
|
void ConsoleDestroyClientCommand();
|
|
|
|
#endif
|