// Distributed under the MIT License (MIT) (see accompanying LICENSE file) #pragma once #include // 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); }