1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-06 02:37:19 +00:00

hook_in_subscreen

This commit is contained in:
Zeno Rogue 2025-03-14 12:22:24 +01:00
parent a064c20b94
commit da22fe21bc

10
hyper.h
View File

@ -792,6 +792,16 @@ template<class T, class V, class... U> V callhandlers(V zero, const hookset<T>&
return h.callhandlers(zero, static_cast<U&&>(args)...);
}
void popScreen();
template<class T, class U> void hook_in_subscreen(hookset<T>& m, int prio, U&& hook) {
int v = m.add(prio, static_cast<U&&>(hook));
pushScreen([&m, v] {
delHook(m, v);
popScreen();
});
}
string XLAT(string);
#define GLERR(call) glError(call, __FILE__, __LINE__)