mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-02-14 00:08:50 -06:00
15 lines
205 B
C++
15 lines
205 B
C++
#include <hex/helpers/debugging.hpp>
|
|
|
|
namespace hex::dbg {
|
|
|
|
namespace impl {
|
|
|
|
bool &getDebugWindowState() {
|
|
static bool state = false;
|
|
|
|
return state;
|
|
}
|
|
|
|
}
|
|
|
|
} |