├── LICENSE ├── README.md ├── bin ├── blood.bmp ├── enemy-1.bmp ├── enemy-2.bmp ├── enemy-butcher.bmp ├── ep-1.bmp ├── ep-1_01.bmp ├── ep-5-animation.bmp ├── ep-5-far.bmp ├── ep-5-layer.bmp ├── ep-5.bmp ├── jack.bmp ├── mostafa-the-game.exe ├── player-jack.bmp ├── punch.bmp ├── smack.bmp ├── ss.png └── ss2.png └── src ├── character.c ├── enemy.c ├── game.c ├── game.h ├── graphics.c ├── mostafa-the-game.cbp ├── mostafa-the-game.depend ├── mostafa-the-game.layout ├── obj └── Debug │ ├── character.o │ ├── enemy.o │ ├── game.o │ ├── graphics.o │ ├── player.o │ ├── sprite.o │ └── util.o ├── player.c ├── sprite.c └── util.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/README.md -------------------------------------------------------------------------------- /bin/blood.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/bin/blood.bmp -------------------------------------------------------------------------------- /bin/enemy-1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/bin/enemy-1.bmp -------------------------------------------------------------------------------- /bin/enemy-2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/bin/enemy-2.bmp -------------------------------------------------------------------------------- /bin/enemy-butcher.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/bin/enemy-butcher.bmp -------------------------------------------------------------------------------- /bin/ep-1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/bin/ep-1.bmp -------------------------------------------------------------------------------- /bin/ep-1_01.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/bin/ep-1_01.bmp -------------------------------------------------------------------------------- /bin/ep-5-animation.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/bin/ep-5-animation.bmp -------------------------------------------------------------------------------- /bin/ep-5-far.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/bin/ep-5-far.bmp -------------------------------------------------------------------------------- /bin/ep-5-layer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/bin/ep-5-layer.bmp -------------------------------------------------------------------------------- /bin/ep-5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/bin/ep-5.bmp -------------------------------------------------------------------------------- /bin/jack.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/bin/jack.bmp -------------------------------------------------------------------------------- /bin/mostafa-the-game.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/bin/mostafa-the-game.exe -------------------------------------------------------------------------------- /bin/player-jack.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/bin/player-jack.bmp -------------------------------------------------------------------------------- /bin/punch.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/bin/punch.bmp -------------------------------------------------------------------------------- /bin/smack.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/bin/smack.bmp -------------------------------------------------------------------------------- /bin/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/bin/ss.png -------------------------------------------------------------------------------- /bin/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/bin/ss2.png -------------------------------------------------------------------------------- /src/character.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/src/character.c -------------------------------------------------------------------------------- /src/enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/src/enemy.c -------------------------------------------------------------------------------- /src/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/src/game.c -------------------------------------------------------------------------------- /src/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/src/game.h -------------------------------------------------------------------------------- /src/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/src/graphics.c -------------------------------------------------------------------------------- /src/mostafa-the-game.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/src/mostafa-the-game.cbp -------------------------------------------------------------------------------- /src/mostafa-the-game.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/src/mostafa-the-game.depend -------------------------------------------------------------------------------- /src/mostafa-the-game.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/src/mostafa-the-game.layout -------------------------------------------------------------------------------- /src/obj/Debug/character.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/src/obj/Debug/character.o -------------------------------------------------------------------------------- /src/obj/Debug/enemy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/src/obj/Debug/enemy.o -------------------------------------------------------------------------------- /src/obj/Debug/game.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/src/obj/Debug/game.o -------------------------------------------------------------------------------- /src/obj/Debug/graphics.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/src/obj/Debug/graphics.o -------------------------------------------------------------------------------- /src/obj/Debug/player.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/src/obj/Debug/player.o -------------------------------------------------------------------------------- /src/obj/Debug/sprite.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/src/obj/Debug/sprite.o -------------------------------------------------------------------------------- /src/obj/Debug/util.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/src/obj/Debug/util.o -------------------------------------------------------------------------------- /src/player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/src/player.c -------------------------------------------------------------------------------- /src/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/src/sprite.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahfarhadreza/mostafa-the-game/HEAD/src/util.c --------------------------------------------------------------------------------