mirror of
https://github.com/XITRIX/NXKit.git
synced 2026-05-30 11:46:52 +00:00
17 lines
361 B
C++
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 {};
|
|
}
|
|
|
|
}
|
|
|