├── .gitignore ├── LICENSE ├── README.md ├── froyo.py ├── requirements.txt ├── resources └── fonts │ └── unifont-14.0.01.ttf └── source ├── ao3_extensions.py ├── configuration.py ├── constants.py ├── engine.py ├── gui.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIux-dev/froyo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIux-dev/froyo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIux-dev/froyo/HEAD/README.md -------------------------------------------------------------------------------- /froyo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIux-dev/froyo/HEAD/froyo.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIux-dev/froyo/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/fonts/unifont-14.0.01.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIux-dev/froyo/HEAD/resources/fonts/unifont-14.0.01.ttf -------------------------------------------------------------------------------- /source/ao3_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIux-dev/froyo/HEAD/source/ao3_extensions.py -------------------------------------------------------------------------------- /source/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIux-dev/froyo/HEAD/source/configuration.py -------------------------------------------------------------------------------- /source/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIux-dev/froyo/HEAD/source/constants.py -------------------------------------------------------------------------------- /source/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIux-dev/froyo/HEAD/source/engine.py -------------------------------------------------------------------------------- /source/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIux-dev/froyo/HEAD/source/gui.py -------------------------------------------------------------------------------- /source/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fIux-dev/froyo/HEAD/source/utils.py --------------------------------------------------------------------------------