// Distributed under the MIT License (MIT) (see accompanying LICENSE file) #pragma once #include class FImGuiModuleManager; // Widget drawing ImGui demo. class FImGuiDemo { public: FImGuiDemo(FImGuiModuleManager& InModuleManager) : ModuleManager(InModuleManager) { } void DrawControls(int32 ContextIndex); private: FImGuiModuleManager& ModuleManager; ImVec4 ClearColor = ImColor{ 114, 144, 154 }; int32 ShowDemoWindowMask = 0; int32 ShowAnotherWindowMask = 0; int32 DemoWindowCounter = 0; uint32 LastDemoWindowFrameNumber = 0; };