├── .gitignore ├── LICENSE ├── LICENSE.tutorial ├── Makefile ├── README.md ├── data ├── font │ ├── Apache License.txt │ └── opensans.ttf └── texture │ └── walls.png ├── screenshot.png └── src └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | *.o 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmsbrg/adventure3d/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmsbrg/adventure3d/HEAD/LICENSE.tutorial -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmsbrg/adventure3d/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmsbrg/adventure3d/HEAD/README.md -------------------------------------------------------------------------------- /data/font/Apache License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmsbrg/adventure3d/HEAD/data/font/Apache License.txt -------------------------------------------------------------------------------- /data/font/opensans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmsbrg/adventure3d/HEAD/data/font/opensans.ttf -------------------------------------------------------------------------------- /data/texture/walls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmsbrg/adventure3d/HEAD/data/texture/walls.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmsbrg/adventure3d/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmsbrg/adventure3d/HEAD/src/main.cpp --------------------------------------------------------------------------------