#include "ui.hpp" #include "ogl.hpp" #include "sandbox.hpp" #include void ShowEverything() { ImGui::Begin("Sandbox"); constexpr int kWidth = 40; constexpr int kHeight = 100; static bool running = false; static Sandbox sandbox(40, 100); static OglImage gl; sandbox.simulate_step(); gl.upload(reinterpret_cast(sandbox._bitmap.data()), kWidth, kHeight); ImGui::End(); }