Files
NXKit/UIKitCore/lib/UIPressesEvent.cpp
T
2025-02-24 23:03:13 +01:00

17 lines
361 B
C++

#include <UIPressesEvent.h>
namespace NXKit {
std::vector<std::shared_ptr<UIPressesEvent>> UIPressesEvent::activePressesEvents;
UIPressesEvent::UIPressesEvent(std::shared_ptr<UIPress> press) {
_allPresses.insert(press);
}
std::set<std::shared_ptr<UIPress>> UIPressesEvent::pressesFor(std::shared_ptr<UIGestureRecognizer> gesture) {
return {};
}
}