mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-11-03 09:46:03 +03:00
21 lines
380 B
C++
21 lines
380 B
C++
#ifndef CONSOLE_DEVICE_HPP
|
|
#define CONSOLE_DEVICE_HPP
|
|
|
|
#include "gx/CGxFormat.hpp"
|
|
|
|
#include "console/Detect.hpp"
|
|
|
|
extern DefaultSettings s_defaults;
|
|
extern Hardware s_hardware;
|
|
extern bool s_hwChanged;
|
|
extern bool s_hwDetect;
|
|
extern CGxFormat s_requestedFormat;
|
|
|
|
void ConsoleDeviceInitialize(const char* title);
|
|
|
|
bool ConsoleDeviceExists();
|
|
|
|
void ConsoleDeviceDestroy();
|
|
|
|
#endif
|