Reorganize repo and add readme.

This commit is contained in:
Anna Rose 2023-09-27 15:33:19 -04:00
parent 9bd54fbe2f
commit 2b33f88594
6 changed files with 10 additions and 3 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
build/ *.pdx

View File

@ -5,7 +5,7 @@ all: build
build: clean build: clean
mkdir -p build mkdir -p build
PLAYDATE_SDK_PATH=$(PLAYDATE_SDK_PATH) $(PLAYDATE_SDK_PATH)/bin/pdc -k main.lua build/$(GAME).pdx cd src && PLAYDATE_SDK_PATH=$(PLAYDATE_SDK_PATH) $(PLAYDATE_SDK_PATH)/bin/pdc -k main.lua ../$(GAME).pdx
clean: clean:
rm -rf build/ rm -rf $(GAME).pdx

7
readme.md Normal file
View File

@ -0,0 +1,7 @@
## Crank-Rotation Object Nudging Game
This is an extremely simple game for the (Playdate)[https://play.date] handheld console. In it, you use the crank to control a paddle, and try to keep the moving Object from reaching the space behind the paddle by Nudging it with the paddle.
This is, of course, a completely novel idea and is dissimilar from any other game ever made.
It was written as an excuse to learn the Playdate SDK, and is made available here in case it serves as a useful tool for basic object-oriented development in Playdate's LUA library.