mirror of
https://github.com/kevinporetti/UnrealImGui.git
synced 2025-01-18 16:30:32 +00:00
20 lines
573 B
C++
20 lines
573 B
C++
// Distributed under the MIT License (MIT) (see accompanying LICENSE file)
|
|
|
|
#pragma once
|
|
|
|
#include <imgui.h>
|
|
|
|
|
|
// Gives access to selected ImGui implementation features.
|
|
namespace ImGuiImplementation
|
|
{
|
|
// Get default context created by ImGui framework.
|
|
ImGuiContext& GetDefaultContext();
|
|
|
|
// Save current context settings.
|
|
void SaveCurrentContextIniSettings(const char* Filename);
|
|
|
|
// Get specific cursor data.
|
|
bool GetCursorData(int CursorType, FVector2D& OutSize, FVector2D& OutUVMin, FVector2D& OutUVMax, FVector2D& OutOutlineUVMin, FVector2D& OutOutlineUVMax);
|
|
}
|