Initial commit

This commit is contained in:
uohlhv 2021-09-16 20:44:09 +08:00
commit 8d1714777d
30 changed files with 1689 additions and 0 deletions

7
compile.sh Executable file
View file

@ -0,0 +1,7 @@
#!/usr/bin/env bash
if [ -d bin ]; then rm -rf bin; fi
javac -d bin src/*.java
cp res/* bin
echo "完成!"