implement bounce.rs

This commit is contained in:
2024-02-18 12:08:29 +01:00
parent 372d3d1137
commit e3c86e0e37
4 changed files with 71 additions and 7 deletions

View File

@ -1,2 +1,10 @@
.PHONY: all
all: rect bounce
rect: rect.rs
rustc -L./raylib/ -lraylib $< -o bin/$@
bounce: bounce.rs
rustc -L./raylib/ -lraylib $< -o bin/$@