mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
11 lines
184 B
C++
11 lines
184 B
C++
|
|
#ifndef CONSOLE_CONSOLE_HPP
|
||
|
|
#define CONSOLE_CONSOLE_HPP
|
||
|
|
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
int32_t ConsoleGetActive();
|
||
|
|
|
||
|
|
void ConsoleSetActive(int32_t active);
|
||
|
|
|
||
|
|
#endif // ifndef CONSOLE_CONSOLE_HPP
|