4 kişilik, patlayıp genişleyerek haritayı ele geçirme oyunu

This commit is contained in:
2025-01-25 00:11:49 +03:00
parent c42b641213
commit d1c31781b7
3 changed files with 137 additions and 1 deletions

8
explode/Makefile Normal file
View File

@@ -0,0 +1,8 @@
# Makefile template, copy and remove comments
SRC := ../util.c explode.c
OUT := ../bin/explode
LIBS := -lraylib -lGL -lm -lpthread -ldl -lrt -lX11
make all:
gcc $(SRC) -o $(OUT) $(LIBS)