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

BIN
build/game Executable file

Binary file not shown.

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;
}

2
makefile Normal file
View file

@ -0,0 +1,2 @@
build/game : main.cpp
clang main.cpp -L/usr/lib -lSDL3 -lSDL3_image -o build/game