add a quick n dirty json editor imgui widget

This commit is contained in:
2021-06-09 22:16:05 +02:00
parent fd4995837e
commit dfe145c142
5 changed files with 568 additions and 0 deletions

View File

@ -67,6 +67,9 @@ class Engine {
_update_strategy = std::move(us);
}
Engine(const Engine&) = delete;
Engine(Engine&&) = delete;
// called from destructor or explicitly (if eg "global", u need dis)
void cleanup(void);