mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp
synced 2026-08-08 18:44:27 -04:00
Add mod UI API exports for slider, password input, and label radio and expose RmlUi debugger on F8
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user