├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lfgfx.py ├── mypy.ini ├── requirements.txt └── timg └── .gitignore /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethteck/lfgfx/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethteck/lfgfx/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethteck/lfgfx/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethteck/lfgfx/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethteck/lfgfx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethteck/lfgfx/HEAD/README.md -------------------------------------------------------------------------------- /lfgfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethteck/lfgfx/HEAD/lfgfx.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethteck/lfgfx/HEAD/mypy.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | argparse 2 | n64img 3 | pygfxd 4 | sty 5 | -------------------------------------------------------------------------------- /timg/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | --------------------------------------------------------------------------------