mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 08:12:44 +03: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;
|
|
}
|