├── .gitattributes ├── Makefile ├── README.md ├── include ├── entity.h ├── ground.h ├── groundtile.h ├── player.h └── renderwindow.h ├── res ├── fonts │ └── cocogoose.ttf ├── sounds │ ├── click.wav │ ├── fall.wav │ ├── hit.wav │ └── jump.wav └── textures │ ├── arrow.png │ ├── death_overlay.png │ ├── ground │ ├── center.png │ ├── hole.png │ ├── left.png │ └── right.png │ ├── highscore_box.png │ ├── logo.png │ └── player │ ├── player_0.png │ ├── player_1.png │ ├── player_2.png │ ├── player_3.png │ └── player_4.png └── src ├── entity.cpp ├── ground.cpp ├── groundtile.cpp ├── main.cpp ├── player.cpp └── renderwindow.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/.gitattributes -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/README.md -------------------------------------------------------------------------------- /include/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/include/entity.h -------------------------------------------------------------------------------- /include/ground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/include/ground.h -------------------------------------------------------------------------------- /include/groundtile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/include/groundtile.h -------------------------------------------------------------------------------- /include/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/include/player.h -------------------------------------------------------------------------------- /include/renderwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/include/renderwindow.h -------------------------------------------------------------------------------- /res/fonts/cocogoose.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/res/fonts/cocogoose.ttf -------------------------------------------------------------------------------- /res/sounds/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/res/sounds/click.wav -------------------------------------------------------------------------------- /res/sounds/fall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/res/sounds/fall.wav -------------------------------------------------------------------------------- /res/sounds/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/res/sounds/hit.wav -------------------------------------------------------------------------------- /res/sounds/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/res/sounds/jump.wav -------------------------------------------------------------------------------- /res/textures/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/res/textures/arrow.png -------------------------------------------------------------------------------- /res/textures/death_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/res/textures/death_overlay.png -------------------------------------------------------------------------------- /res/textures/ground/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/res/textures/ground/center.png -------------------------------------------------------------------------------- /res/textures/ground/hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/res/textures/ground/hole.png -------------------------------------------------------------------------------- /res/textures/ground/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/res/textures/ground/left.png -------------------------------------------------------------------------------- /res/textures/ground/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/res/textures/ground/right.png -------------------------------------------------------------------------------- /res/textures/highscore_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/res/textures/highscore_box.png -------------------------------------------------------------------------------- /res/textures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/res/textures/logo.png -------------------------------------------------------------------------------- /res/textures/player/player_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/res/textures/player/player_0.png -------------------------------------------------------------------------------- /res/textures/player/player_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/res/textures/player/player_1.png -------------------------------------------------------------------------------- /res/textures/player/player_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/res/textures/player/player_2.png -------------------------------------------------------------------------------- /res/textures/player/player_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/res/textures/player/player_3.png -------------------------------------------------------------------------------- /res/textures/player/player_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/res/textures/player/player_4.png -------------------------------------------------------------------------------- /src/entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/src/entity.cpp -------------------------------------------------------------------------------- /src/ground.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/src/ground.cpp -------------------------------------------------------------------------------- /src/groundtile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/src/groundtile.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/src/player.cpp -------------------------------------------------------------------------------- /src/renderwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyMarsDev/Cursor-Custodian/HEAD/src/renderwindow.cpp --------------------------------------------------------------------------------