mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
16 lines
283 B
C++
16 lines
283 B
C++
#ifndef CLIENT_CONSOLE_HPP
|
|
#define CLIENT_CONSOLE_HPP
|
|
|
|
#include "gx/CGxFormat.hpp"
|
|
|
|
struct DefaultSettings {
|
|
CGxFormat format;
|
|
};
|
|
|
|
void ConsoleInitializeClientCommand();
|
|
|
|
void ConsoleInitializeClientCVar(const char* a1);
|
|
|
|
void ConsoleDeviceInitialize(const char* title);
|
|
|
|
#endif
|