Add mod UI API exports for slider, password input, and label radio and expose RmlUi debugger on F8

This commit is contained in:
Mr-Wiseguy
2025-04-07 21:46:53 -04:00
parent 1c6f445503
commit d614634bf1
16 changed files with 283 additions and 32 deletions
+10
View File
@@ -0,0 +1,10 @@
#ifndef __OVERLOADED_H__
#define __OVERLOADED_H__
// Helper for std::visit
template<class... Ts>
struct overloaded : Ts... { using Ts::operator()...; };
template<class... Ts>
overloaded(Ts...) -> overloaded<Ts...>;
#endif