├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── res ├── level.txt └── test.png ├── screen └── image.png └── src ├── main_doom.c └── main_wolf.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdah/doomenstein-3d/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdah/doomenstein-3d/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdah/doomenstein-3d/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdah/doomenstein-3d/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdah/doomenstein-3d/HEAD/README.md -------------------------------------------------------------------------------- /res/level.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdah/doomenstein-3d/HEAD/res/level.txt -------------------------------------------------------------------------------- /res/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdah/doomenstein-3d/HEAD/res/test.png -------------------------------------------------------------------------------- /screen/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdah/doomenstein-3d/HEAD/screen/image.png -------------------------------------------------------------------------------- /src/main_doom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdah/doomenstein-3d/HEAD/src/main_doom.c -------------------------------------------------------------------------------- /src/main_wolf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdah/doomenstein-3d/HEAD/src/main_wolf.c --------------------------------------------------------------------------------