├── .gitignore ├── LICENSE ├── README.md ├── conway.c ├── conway.obfus.c ├── conway.orig.c ├── images ├── conway.png └── glider.png ├── imgformat.c ├── nob.c └── thirdparty ├── nob.h ├── stb_c_lexer.h └── stb_image.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/conway/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/conway/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/conway/HEAD/README.md -------------------------------------------------------------------------------- /conway.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/conway/HEAD/conway.c -------------------------------------------------------------------------------- /conway.obfus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/conway/HEAD/conway.obfus.c -------------------------------------------------------------------------------- /conway.orig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/conway/HEAD/conway.orig.c -------------------------------------------------------------------------------- /images/conway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/conway/HEAD/images/conway.png -------------------------------------------------------------------------------- /images/glider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/conway/HEAD/images/glider.png -------------------------------------------------------------------------------- /imgformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/conway/HEAD/imgformat.c -------------------------------------------------------------------------------- /nob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/conway/HEAD/nob.c -------------------------------------------------------------------------------- /thirdparty/nob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/conway/HEAD/thirdparty/nob.h -------------------------------------------------------------------------------- /thirdparty/stb_c_lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/conway/HEAD/thirdparty/stb_c_lexer.h -------------------------------------------------------------------------------- /thirdparty/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/conway/HEAD/thirdparty/stb_image.h --------------------------------------------------------------------------------