feat(console): add helpers for console access enabled state

This commit is contained in:
Tristan 'Natrist' Cormier 2023-04-15 17:03:58 -04:00 committed by GitHub
parent 092ba0f881
commit ef71ddc46e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 0 deletions

View file

@ -3,6 +3,10 @@
#include <cstdint>
int32_t ConsoleAccessGetEnabled();
void ConsoleAccessSetEnabled(int32_t enable);
int32_t ConsoleGetActive();
void ConsoleSetActive(int32_t active);