chore(console): move console functions out of client

This commit is contained in:
Tristan 'Natrist' Cormier 2023-04-02 06:06:40 -07:00 committed by GitHub
parent e957b2bb61
commit 9d0487c8ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 8 deletions

16
src/console/Client.hpp Normal file
View file

@ -0,0 +1,16 @@
#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