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

15 lines
235 B
C++

#include <UIEvent.h>
#include <UITouch.h>
namespace NXKit {
std::vector<std::shared_ptr<UIEvent>> UIEvent::activeEvents;
UIEvent::UIEvent() {};
UIEvent::UIEvent(std::shared_ptr<UITouch> touch) {
_allTouches.insert(touch);
}
}