2023-04-15 15:40:07 -04:00
|
|
|
#ifndef CONSOLE_CONSOLE_HPP
|
|
|
|
|
#define CONSOLE_CONSOLE_HPP
|
|
|
|
|
|
2023-04-17 22:44:44 -05:00
|
|
|
#include "console/Types.hpp"
|
2023-04-15 17:33:17 -04:00
|
|
|
#include "event/Types.hpp"
|
2023-04-15 15:40:07 -04:00
|
|
|
#include <cstdint>
|
|
|
|
|
|
2023-04-15 17:03:58 -04:00
|
|
|
int32_t ConsoleAccessGetEnabled();
|
|
|
|
|
|
|
|
|
|
void ConsoleAccessSetEnabled(int32_t enable);
|
|
|
|
|
|
2023-04-15 15:40:07 -04:00
|
|
|
int32_t ConsoleGetActive();
|
|
|
|
|
|
2023-04-15 17:33:17 -04:00
|
|
|
KEY ConsoleGetHotKey();
|
|
|
|
|
|
2023-04-17 22:44:44 -05:00
|
|
|
CONSOLERESIZESTATE ConsoleGetResizeState();
|
|
|
|
|
|
2023-04-15 15:40:07 -04:00
|
|
|
void ConsoleSetActive(int32_t active);
|
|
|
|
|
|
2023-04-15 17:33:17 -04:00
|
|
|
void ConsoleSetHotKey(KEY hotkey);
|
|
|
|
|
|
2023-04-17 22:44:44 -05:00
|
|
|
void ConsoleSetResizeState(CONSOLERESIZESTATE state);
|
|
|
|
|
|
2023-04-15 15:40:07 -04:00
|
|
|
#endif // ifndef CONSOLE_CONSOLE_HPP
|