mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
17 lines
283 B
C++
17 lines
283 B
C++
#ifndef CONSOLE_CLIENT_HPP
|
|
#define CONSOLE_CLIENT_HPP
|
|
|
|
#include "gx/CGxFormat.hpp"
|
|
|
|
struct DefaultSettings {
|
|
CGxFormat format;
|
|
};
|
|
|
|
void ConsoleInitializeClientCommand();
|
|
|
|
void ConsoleInitializeClientCVar(const char* a1);
|
|
|
|
void ConsoleDeviceInitialize(const char* title);
|
|
|
|
#endif
|