├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── demo ├── speak1.bmp ├── speak2.bmp ├── speak3.bmp ├── speak4.bmp ├── speak5.bmp ├── speak6.bmp ├── speaker.mtl └── speaker.obj └── src ├── Makefile ├── main.c ├── n64out.c ├── n64out.h ├── objload.c ├── objload.h └── types.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n64dev/objn64/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.exe 3 | src/objn64 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n64dev/objn64/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n64dev/objn64/HEAD/README.md -------------------------------------------------------------------------------- /demo/speak1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n64dev/objn64/HEAD/demo/speak1.bmp -------------------------------------------------------------------------------- /demo/speak2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n64dev/objn64/HEAD/demo/speak2.bmp -------------------------------------------------------------------------------- /demo/speak3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n64dev/objn64/HEAD/demo/speak3.bmp -------------------------------------------------------------------------------- /demo/speak4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n64dev/objn64/HEAD/demo/speak4.bmp -------------------------------------------------------------------------------- /demo/speak5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n64dev/objn64/HEAD/demo/speak5.bmp -------------------------------------------------------------------------------- /demo/speak6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n64dev/objn64/HEAD/demo/speak6.bmp -------------------------------------------------------------------------------- /demo/speaker.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n64dev/objn64/HEAD/demo/speaker.mtl -------------------------------------------------------------------------------- /demo/speaker.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n64dev/objn64/HEAD/demo/speaker.obj -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n64dev/objn64/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n64dev/objn64/HEAD/src/main.c -------------------------------------------------------------------------------- /src/n64out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n64dev/objn64/HEAD/src/n64out.c -------------------------------------------------------------------------------- /src/n64out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n64dev/objn64/HEAD/src/n64out.h -------------------------------------------------------------------------------- /src/objload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n64dev/objn64/HEAD/src/objload.c -------------------------------------------------------------------------------- /src/objload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n64dev/objn64/HEAD/src/objload.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n64dev/objn64/HEAD/src/types.h --------------------------------------------------------------------------------