Add wrappers for SDL functions and structs
This commit is contained in:
parent
4277f4c818
commit
d180b8a5b4
18 changed files with 410 additions and 206 deletions
11
src/wrappers/sdl/events.cppm
Normal file
11
src/wrappers/sdl/events.cppm
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
module;
|
||||
|
||||
#include <SDL3/SDL.h>
|
||||
|
||||
export module wrappers.sdl.events;
|
||||
|
||||
export namespace sdl
|
||||
{
|
||||
// Simple alias for SDL_Event union
|
||||
using Event = SDL_Event;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue