ECSTASY
All in the name
Loading...
Searching...
No Matches
MouseButtonPressedEvent.hpp
Go to the documentation of this file.
1
11
12#ifndef ECSTASY_INTEGRATION_EVENT_EVENTS_MOUSEBUTTONPRESSEDEVENT_HPP_
13#define ECSTASY_INTEGRATION_EVENT_EVENTS_MOUSEBUTTONPRESSEDEVENT_HPP_
14
15#include "MouseButtonEvent.hpp"
16
18{
34 constexpr MouseButtonPressedEvent(Mouse::Button pButton) noexcept : MouseButtonEvent(pButton, true)
35 {
36 }
37 };
38
39} // namespace ecstasy::integration::event
40
41#endif /* !ECSTASY_INTEGRATION_EVENT_EVENTS_MOUSEBUTTONPRESSEDEVENT_HPP_ */
Event integration.
Definition Event.hpp:25
Event describing when a mouse button is pressed or released.
Event describing when a mouse button is pressed.
constexpr MouseButtonPressedEvent(Mouse::Button pButton) noexcept
Construct a new MouseButtonPressedEvent object.