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