First commit

This commit is contained in:
2024-01-17 23:25:43 -05:00
commit 9180e55c88
5 changed files with 180 additions and 0 deletions

8
Makefile Normal file
View File

@@ -0,0 +1,8 @@
LDLIBS = -lraylib
CXXFLAGS += -Wall -Wextra -pedantic -Werror
pong: main.o paddle.hpp ball.hpp
g++ $(CXXFLAGS) main.o -o pong $(LDLIBS)
main.o : main.cpp
g++ $(CXXFLAGS) -c main.cpp -o main.o