mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 08:12:44 +03:00
15 lines
224 B
C++
15 lines
224 B
C++
#ifndef CONSOLE_DEVICE_HPP
|
|
#define CONSOLE_DEVICE_HPP
|
|
|
|
#include "gx/CGxFormat.hpp"
|
|
|
|
struct DefaultSettings {
|
|
CGxFormat format;
|
|
};
|
|
|
|
void ConsoleDeviceInitialize(const char* title);
|
|
|
|
int32_t ConsoleDeviceExists();
|
|
|
|
#endif
|