├── .gitignore ├── Cargo.toml ├── README.md ├── docs ├── full.gif └── playing.gif ├── images ├── apple1.png ├── apple2.png ├── apple3.png ├── apple4.png ├── apple5.png ├── apple6.png ├── apple7.png ├── apple8.png ├── apple9.png └── reset.png ├── main.py ├── poetry.lock ├── pyproject.toml └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | /.idea 3 | /Cargo.lock 4 | /target 5 | __pycache__ 6 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinychen/fruit-box-bot/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinychen/fruit-box-bot/HEAD/README.md -------------------------------------------------------------------------------- /docs/full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinychen/fruit-box-bot/HEAD/docs/full.gif -------------------------------------------------------------------------------- /docs/playing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinychen/fruit-box-bot/HEAD/docs/playing.gif -------------------------------------------------------------------------------- /images/apple1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinychen/fruit-box-bot/HEAD/images/apple1.png -------------------------------------------------------------------------------- /images/apple2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinychen/fruit-box-bot/HEAD/images/apple2.png -------------------------------------------------------------------------------- /images/apple3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinychen/fruit-box-bot/HEAD/images/apple3.png -------------------------------------------------------------------------------- /images/apple4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinychen/fruit-box-bot/HEAD/images/apple4.png -------------------------------------------------------------------------------- /images/apple5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinychen/fruit-box-bot/HEAD/images/apple5.png -------------------------------------------------------------------------------- /images/apple6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinychen/fruit-box-bot/HEAD/images/apple6.png -------------------------------------------------------------------------------- /images/apple7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinychen/fruit-box-bot/HEAD/images/apple7.png -------------------------------------------------------------------------------- /images/apple8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinychen/fruit-box-bot/HEAD/images/apple8.png -------------------------------------------------------------------------------- /images/apple9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinychen/fruit-box-bot/HEAD/images/apple9.png -------------------------------------------------------------------------------- /images/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinychen/fruit-box-bot/HEAD/images/reset.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinychen/fruit-box-bot/HEAD/main.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinychen/fruit-box-bot/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinychen/fruit-box-bot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinychen/fruit-box-bot/HEAD/src/lib.rs --------------------------------------------------------------------------------