ECSTASY
All in the name
Loading...
Searching...
No Matches
MouseMoveEvent.hpp
Go to the documentation of this file.
1
11
12#ifndef ECSTASY_INTEGRATION_EVENT_EVENTS_MOUSEMOVEEVENT_HPP_
13#define ECSTASY_INTEGRATION_EVENT_EVENTS_MOUSEMOVEEVENT_HPP_
14
16
18{
27 int x;
29 int y;
30
40 constexpr MouseMoveEvent(int pX = 0, int pY = 0) noexcept : x(pX), y(pY)
41 {
42 }
43 };
44
45} // namespace ecstasy::integration::event
46
47#endif /* !ECSTASY_INTEGRATION_EVENT_EVENTS_MOUSEMOVEEVENT_HPP_ */
Event integration.
Definition Event.hpp:25
Event describing when the mouse move.
constexpr MouseMoveEvent(int pX=0, int pY=0) noexcept
Construct a new MouseMoveEvent object.