Initial commit
This commit is contained in:
commit
41f21a0211
3 changed files with 10 additions and 0 deletions
BIN
build/game
Executable file
BIN
build/game
Executable file
Binary file not shown.
8
main.cpp
Normal file
8
main.cpp
Normal 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
2
makefile
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
build/game : main.cpp
|
||||||
|
clang main.cpp -L/usr/lib -lSDL3 -lSDL3_image -o build/game
|
||||||
Loading…
Add table
Add a link
Reference in a new issue