We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
HUDMenu::SetHUDColor
1 parent 1119aee commit d6343d6Copy full SHA for d6343d6
2 files changed
include/RE/H/HUDMenu.h
@@ -27,6 +27,13 @@ namespace RE
27
kReshowOnDestructor = 0x3
28
};
29
30
+ void SetHUDColor()
31
+ {
32
+ using func_t = decltype(&HUDMenu::SetHUDColor);
33
+ REL::Relocation<func_t> func{ ID::HUDMenu::SetHUDColor };
34
+ return func(this);
35
+ }
36
+
37
// members
38
BSTSmallArray<std::unique_ptr<HUDComponentBase>, 32> hudObjects; // 0F0
39
BSTArray<HUDModeType> hudModes; // 200
include/RE/IDs.h
@@ -1063,6 +1063,11 @@ namespace RE::ID
1063
inline constexpr REL::ID UpdateDisplayObject{ 2220382 };
1064
}
1065
1066
+ namespace HUDMenu
1067
1068
+ inline constexpr REL::ID SetHUDColor{ 2248918 };
1069
1070
1071
namespace HUDMenuUtils
1072
{
1073
inline constexpr REL::ID GetGameplayHUDColor{ 2248840 };
0 commit comments