commit 41f21a0211d9eaa66ce9a1a7a46f573026ab7451 Author: Rendo Date: Mon Mar 9 21:34:51 2026 +0500 Initial commit diff --git a/build/game b/build/game new file mode 100755 index 0000000..81da1c3 Binary files /dev/null and b/build/game differ diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..f23e4dc --- /dev/null +++ b/main.cpp @@ -0,0 +1,8 @@ +#include +#include + +int main() { + SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO); + + return 0; +} diff --git a/makefile b/makefile new file mode 100644 index 0000000..32a12f0 --- /dev/null +++ b/makefile @@ -0,0 +1,2 @@ +build/game : main.cpp + clang main.cpp -L/usr/lib -lSDL3 -lSDL3_image -o build/game