mirror of
https://github.com/kevinporetti/UnrealImGui.git
synced 2025-01-18 16:30:32 +00:00
22 lines
318 B
C++
22 lines
318 B
C++
// Distributed under the MIT License (MIT) (see accompanying LICENSE file)
|
|
|
|
#pragma once
|
|
|
|
#include <imgui.h>
|
|
|
|
|
|
// Widget drawing ImGui demo.
|
|
class FImGuiDemo
|
|
{
|
|
public:
|
|
|
|
void DrawControls();
|
|
|
|
private:
|
|
|
|
ImVec4 ClearColor = ImColor{ 114, 144, 154 };
|
|
|
|
int32 ShowDemoWindowMask = 0;
|
|
int32 ShowAnotherWindowMask = 0;
|
|
};
|