├── COPYING ├── Makefile ├── README.textile ├── levels ├── climb.lvl ├── m.lvl ├── out.lvl ├── stairs.lvl ├── steps.lvl └── triangle.lvl ├── physics.c ├── physics.h ├── raycaster.c ├── raycaster.h ├── textures ├── floor.tga ├── monster_aim.tga ├── monster_fire.tga ├── monster_stand.tga ├── monster_walk1.tga ├── monster_walk2.tga ├── sprite.tga ├── wall.tga └── wall.xcf ├── tga.c ├── tga.h ├── vector.c ├── vector.h ├── world.c └── world.h /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/Makefile -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/README.textile -------------------------------------------------------------------------------- /levels/climb.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/levels/climb.lvl -------------------------------------------------------------------------------- /levels/m.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/levels/m.lvl -------------------------------------------------------------------------------- /levels/out.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/levels/out.lvl -------------------------------------------------------------------------------- /levels/stairs.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/levels/stairs.lvl -------------------------------------------------------------------------------- /levels/steps.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/levels/steps.lvl -------------------------------------------------------------------------------- /levels/triangle.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/levels/triangle.lvl -------------------------------------------------------------------------------- /physics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/physics.c -------------------------------------------------------------------------------- /physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/physics.h -------------------------------------------------------------------------------- /raycaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/raycaster.c -------------------------------------------------------------------------------- /raycaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/raycaster.h -------------------------------------------------------------------------------- /textures/floor.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/textures/floor.tga -------------------------------------------------------------------------------- /textures/monster_aim.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/textures/monster_aim.tga -------------------------------------------------------------------------------- /textures/monster_fire.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/textures/monster_fire.tga -------------------------------------------------------------------------------- /textures/monster_stand.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/textures/monster_stand.tga -------------------------------------------------------------------------------- /textures/monster_walk1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/textures/monster_walk1.tga -------------------------------------------------------------------------------- /textures/monster_walk2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/textures/monster_walk2.tga -------------------------------------------------------------------------------- /textures/sprite.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/textures/sprite.tga -------------------------------------------------------------------------------- /textures/wall.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/textures/wall.tga -------------------------------------------------------------------------------- /textures/wall.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/textures/wall.xcf -------------------------------------------------------------------------------- /tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/tga.c -------------------------------------------------------------------------------- /tga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/tga.h -------------------------------------------------------------------------------- /vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/vector.c -------------------------------------------------------------------------------- /vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/vector.h -------------------------------------------------------------------------------- /world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/world.c -------------------------------------------------------------------------------- /world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewearl/Raycaster/HEAD/world.h --------------------------------------------------------------------------------