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