Wrap SDL event type enum (partially)
This commit is contained in:
parent
b8bd56392c
commit
d4c91450d9
3 changed files with 22 additions and 3 deletions
|
|
@ -8,4 +8,23 @@ export namespace sdl
|
|||
{
|
||||
// Simple alias for SDL_Event union
|
||||
using Event = SDL_Event;
|
||||
|
||||
// Alias for EventType enum
|
||||
using EventType_t = SDL_EventType;
|
||||
|
||||
/**
|
||||
* Wrapper for the SDL_EventType enum.
|
||||
*
|
||||
* We're using a namespace here to emulate an enum-like interface, without having to copy the entire enum.
|
||||
* More constants can be added on demand.
|
||||
*/
|
||||
namespace EventType
|
||||
{
|
||||
constexpr EventType_t Quit = SDL_EVENT_QUIT;
|
||||
constexpr EventType_t KeyDown = SDL_EVENT_KEY_DOWN;
|
||||
constexpr EventType_t KeyUp = SDL_EVENT_KEY_UP;
|
||||
constexpr EventType_t MouseMotion = SDL_EVENT_MOUSE_MOTION;
|
||||
constexpr EventType_t MouseButtonUp = SDL_EVENT_MOUSE_BUTTON_UP;
|
||||
constexpr EventType_t MouseButtonDown = SDL_EVENT_MOUSE_BUTTON_DOWN;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue