Files
Laytan Laats e09f226126 add examples/all/sdl3 for all sdl3 dependant packages
+ adds the wgpu glue packages to examples/all
2025-06-02 21:05:38 +02:00

14 lines
253 B
Odin

/*
Imports all packages using SDL3, can't go in the parent directory
because SDL2 and SDL3 will have naming conflicts.
*/
package all_sdl3
import SDL "vendor:sdl3"
import IMG "vendor:sdl3/image"
import TTF "vendor:sdl3/ttf"
_ :: SDL
_ :: IMG
_ :: TTF