Rough first draft of maze game in c++

This commit is contained in:
2023-10-08 22:46:04 -04:00
parent aa39c6d844
commit 38dc495d36
7 changed files with 51596 additions and 0 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
snowland: glad.o snowland.o stb_image.o
g++ -o snowland glad.o snowland.o stb_image.o -ldl -lglfw -std=c++17
glad.o: glad.c
g++ -c -o glad.o glad.c
snowland.o: snowland.cpp
g++ -c -o snowland.o snowland.cpp -std=c++17
stb_image.o: stb_image.c
g++ -c -o stb_image.o stb_image.c -std=c++17
clean:
rm -f *.o snowland