Initial commit

This commit is contained in:
Rendo 2026-03-09 21:34:51 +05:00
commit 41f21a0211
3 changed files with 10 additions and 0 deletions

8
main.cpp Normal file
View file

@ -0,0 +1,8 @@
#include <SDL3/SDL.h>
#include <SDL3_image/SDL_image.h>
int main() {
SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO);
return 0;
}