8 lines
129 B
C++
8 lines
129 B
C++
#include <SDL3/SDL.h>
|
|
#include <SDL3_image/SDL_image.h>
|
|
|
|
int main() {
|
|
SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO);
|
|
|
|
return 0;
|
|
}
|