├── .gitattributes ├── LICENSE ├── Makefile ├── README.md ├── bin └── tuxplorer ├── include ├── config.h ├── controls.h ├── dirFunctions.h ├── draw.h ├── globals.h ├── media.h └── stb_image.h ├── obj ├── config.o ├── controls.o ├── dirFunctions.o ├── draw.o ├── globals.o ├── main.o └── media.o ├── screenshots └── tuxplorer_screenshotV0.1.png └── src ├── config.c ├── controls.c ├── dirFunctions.c ├── draw.c ├── globals.c ├── main.c └── media.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/README.md -------------------------------------------------------------------------------- /bin/tuxplorer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/bin/tuxplorer -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/include/config.h -------------------------------------------------------------------------------- /include/controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/include/controls.h -------------------------------------------------------------------------------- /include/dirFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/include/dirFunctions.h -------------------------------------------------------------------------------- /include/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/include/draw.h -------------------------------------------------------------------------------- /include/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/include/globals.h -------------------------------------------------------------------------------- /include/media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/include/media.h -------------------------------------------------------------------------------- /include/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/include/stb_image.h -------------------------------------------------------------------------------- /obj/config.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/obj/config.o -------------------------------------------------------------------------------- /obj/controls.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/obj/controls.o -------------------------------------------------------------------------------- /obj/dirFunctions.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/obj/dirFunctions.o -------------------------------------------------------------------------------- /obj/draw.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/obj/draw.o -------------------------------------------------------------------------------- /obj/globals.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/obj/globals.o -------------------------------------------------------------------------------- /obj/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/obj/main.o -------------------------------------------------------------------------------- /obj/media.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/obj/media.o -------------------------------------------------------------------------------- /screenshots/tuxplorer_screenshotV0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/screenshots/tuxplorer_screenshotV0.1.png -------------------------------------------------------------------------------- /src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/src/config.c -------------------------------------------------------------------------------- /src/controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/src/controls.c -------------------------------------------------------------------------------- /src/dirFunctions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/src/dirFunctions.c -------------------------------------------------------------------------------- /src/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/src/draw.c -------------------------------------------------------------------------------- /src/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/src/globals.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/src/main.c -------------------------------------------------------------------------------- /src/media.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pand3ru/Tuxplorer/HEAD/src/media.c --------------------------------------------------------------------------------