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