From c56dff49da0c6ee5b3ffcc1395a873f0b6bded2e Mon Sep 17 00:00:00 2001 From: Baoulettes Date: Tue, 17 May 2022 20:11:49 +0200 Subject: [PATCH] Added EnhancementColor4 in head file --- libultraship/libultraship/SohImGuiImpl.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libultraship/libultraship/SohImGuiImpl.h b/libultraship/libultraship/SohImGuiImpl.h index dd0ec9fd3..450f97891 100644 --- a/libultraship/libultraship/SohImGuiImpl.h +++ b/libultraship/libultraship/SohImGuiImpl.h @@ -68,7 +68,8 @@ namespace SohImGui { void EnhancementCheckbox(std::string text, std::string cvarName); void EnhancementSliderInt(std::string text, std::string id, std::string cvarName, int min, int max, std::string format); void EnhancementSliderFloat(std::string text, std::string id, std::string cvarName, float min, float max, std::string format, float defaultValue); - + void EnhancementColor4(std::string text, std::string cvarName, float ColorRGBA[4], bool TitleSameLine); + void DrawMainMenuAndCalculateGameSize(void); void DrawFramebufferAndGameInput(void);