├── .gitignore ├── LICENSE ├── Makefile ├── TODO.txt ├── atlas.inl ├── fenster.h ├── main.c ├── microui.c ├── microui.h ├── renderer.c └── renderer.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.d 2 | main 3 | tags 4 | *.o 5 | *.exe 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekknolagi/full-beans/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekknolagi/full-beans/HEAD/Makefile -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekknolagi/full-beans/HEAD/TODO.txt -------------------------------------------------------------------------------- /atlas.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekknolagi/full-beans/HEAD/atlas.inl -------------------------------------------------------------------------------- /fenster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekknolagi/full-beans/HEAD/fenster.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekknolagi/full-beans/HEAD/main.c -------------------------------------------------------------------------------- /microui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekknolagi/full-beans/HEAD/microui.c -------------------------------------------------------------------------------- /microui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekknolagi/full-beans/HEAD/microui.h -------------------------------------------------------------------------------- /renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekknolagi/full-beans/HEAD/renderer.c -------------------------------------------------------------------------------- /renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekknolagi/full-beans/HEAD/renderer.h --------------------------------------------------------------------------------