mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-13 11:32:29 +00:00
12 lines
176 B
C++
12 lines
176 B
C++
|
|
#include "console/Console.hpp"
|
||
|
|
|
||
|
|
static int32_t s_active;
|
||
|
|
|
||
|
|
int32_t ConsoleGetActive() {
|
||
|
|
return s_active;
|
||
|
|
}
|
||
|
|
|
||
|
|
void ConsoleSetActive(int32_t active) {
|
||
|
|
s_active = active;
|
||
|
|
}
|