ECSTASY
All in the name
Loading...
Searching...
No Matches
TextEnteredEvent.hpp
Go to the documentation of this file.
1
11
12#ifndef ECSTASY_INTEGRATIONS_EVENT_EVENTS_TEXTENTEREDEVENT_HPP_
13#define ECSTASY_INTEGRATIONS_EVENT_EVENTS_TEXTENTEREDEVENT_HPP_
14
15#include <cstdint>
16
18{
28
37 constexpr TextEnteredEvent(std::uint32_t pUnicode) noexcept : unicode(pUnicode){};
38 };
39} // namespace ecstasy::integration::event
40
41#endif /* !ECSTASY_INTEGRATIONS_EVENT_EVENTS_TEXTENTEREDEVENT_HPP_ */
Event integration.
Definition Event.hpp:25
Event describing a text (character) entered.
std::uint32_t unicode
Unicode of character entered.
constexpr TextEnteredEvent(std::uint32_t pUnicode) noexcept
Construct a new TextEnteredEvent object.