rename keycode, mousecode enumerations

This commit is contained in:
MihailRis
2025-04-02 17:39:31 +03:00
parent 9843a1fc27
commit 881edb7b28
22 changed files with 160 additions and 154 deletions
+2 -2
View File
@@ -31,12 +31,12 @@ namespace util {
nextid = o.nextid;
}
observer_handler add(std::function<bool(Types...)> handler) {
ObserverHandler add(std::function<bool(Types...)> handler) {
std::lock_guard lock(mutex);
int id = nextid++;
handlers[id] = std::move(handler);
order.push_back(id);
return observer_handler([this, id]() {
return ObserverHandler([this, id]() {
std::lock_guard lock(mutex);
handlers.erase(id);
order.erase(