// Distributed under the MIT License (MIT) (see accompanying LICENSE file) #pragma once #include // Widget drawing ImGui demo. class FImGuiDemo { public: void DrawControls(); private: ImVec4 ClearColor = ImColor{ 114, 144, 154 }; bool bShowDemo = false; bool bDemoShowTestWindow = true; bool bDemoShowAnotherTestWindow = false; };