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;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|