├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── assets ├── digits.png └── penger_walk_sheet.png ├── demo.gif ├── docs └── sowon.6 ├── src ├── common.c ├── main.c ├── png2c.c └── rglLoad.h └── thirdparty ├── RGFW.h └── stb_image.h /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/sowon/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/sowon/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/sowon/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/sowon/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/sowon/HEAD/README.md -------------------------------------------------------------------------------- /assets/digits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/sowon/HEAD/assets/digits.png -------------------------------------------------------------------------------- /assets/penger_walk_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/sowon/HEAD/assets/penger_walk_sheet.png -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/sowon/HEAD/demo.gif -------------------------------------------------------------------------------- /docs/sowon.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/sowon/HEAD/docs/sowon.6 -------------------------------------------------------------------------------- /src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/sowon/HEAD/src/common.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/sowon/HEAD/src/main.c -------------------------------------------------------------------------------- /src/png2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/sowon/HEAD/src/png2c.c -------------------------------------------------------------------------------- /src/rglLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/sowon/HEAD/src/rglLoad.h -------------------------------------------------------------------------------- /thirdparty/RGFW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/sowon/HEAD/thirdparty/RGFW.h -------------------------------------------------------------------------------- /thirdparty/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/sowon/HEAD/thirdparty/stb_image.h --------------------------------------------------------------------------------