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