├── .gitignore ├── CHANGELOG.txt ├── LICENSE.txt ├── README.md ├── assets ├── colors.txt ├── fonts │ └── Vollkorn │ │ ├── OFL.txt │ │ └── static │ │ └── Vollkorn-Regular.ttf ├── icon.ico ├── icon.png ├── map-new.png ├── map.png └── sounds │ ├── CREDITS.txt │ ├── ambient.wav │ ├── blast.ogg │ ├── bomb-pickup.ogg │ ├── checkpoint.ogg │ ├── footsteps.mp3 │ ├── guard-step.ogg │ ├── key-pickup.wav │ ├── open-door.wav │ ├── plant-bomb.wav │ └── popup-show.wav ├── eepers.adb ├── eepers.rc ├── raylib.adb ├── raylib.ads ├── raylib ├── raylib-5.0_linux_amd64 │ ├── CHANGELOG │ ├── LICENSE │ ├── README.md │ └── lib │ │ ├── libraylib.a │ │ ├── libraylib.so │ │ ├── libraylib.so.5.0.0 │ │ └── libraylib.so.500 ├── raylib-5.0_macos │ ├── CHANGELOG │ ├── LICENSE │ ├── README.md │ └── lib │ │ ├── libraylib.5.0.0.dylib │ │ ├── libraylib.500.dylib │ │ ├── libraylib.a │ │ └── libraylib.dylib └── raylib-5.0_win64_mingw-w64 │ ├── CHANGELOG │ ├── LICENSE │ ├── README.md │ └── lib │ ├── libraylib.a │ ├── libraylibdll.a │ └── raylib.dll ├── raymath.ads └── test.adb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/README.md -------------------------------------------------------------------------------- /assets/colors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/assets/colors.txt -------------------------------------------------------------------------------- /assets/fonts/Vollkorn/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/assets/fonts/Vollkorn/OFL.txt -------------------------------------------------------------------------------- /assets/fonts/Vollkorn/static/Vollkorn-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/assets/fonts/Vollkorn/static/Vollkorn-Regular.ttf -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/map-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/assets/map-new.png -------------------------------------------------------------------------------- /assets/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/assets/map.png -------------------------------------------------------------------------------- /assets/sounds/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/assets/sounds/CREDITS.txt -------------------------------------------------------------------------------- /assets/sounds/ambient.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/assets/sounds/ambient.wav -------------------------------------------------------------------------------- /assets/sounds/blast.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/assets/sounds/blast.ogg -------------------------------------------------------------------------------- /assets/sounds/bomb-pickup.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/assets/sounds/bomb-pickup.ogg -------------------------------------------------------------------------------- /assets/sounds/checkpoint.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/assets/sounds/checkpoint.ogg -------------------------------------------------------------------------------- /assets/sounds/footsteps.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/assets/sounds/footsteps.mp3 -------------------------------------------------------------------------------- /assets/sounds/guard-step.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/assets/sounds/guard-step.ogg -------------------------------------------------------------------------------- /assets/sounds/key-pickup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/assets/sounds/key-pickup.wav -------------------------------------------------------------------------------- /assets/sounds/open-door.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/assets/sounds/open-door.wav -------------------------------------------------------------------------------- /assets/sounds/plant-bomb.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/assets/sounds/plant-bomb.wav -------------------------------------------------------------------------------- /assets/sounds/popup-show.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/assets/sounds/popup-show.wav -------------------------------------------------------------------------------- /eepers.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/eepers.adb -------------------------------------------------------------------------------- /eepers.rc: -------------------------------------------------------------------------------- 1 | id ICON "./assets/icon.ico" 2 | -------------------------------------------------------------------------------- /raylib.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raylib.adb -------------------------------------------------------------------------------- /raylib.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raylib.ads -------------------------------------------------------------------------------- /raylib/raylib-5.0_linux_amd64/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raylib/raylib-5.0_linux_amd64/CHANGELOG -------------------------------------------------------------------------------- /raylib/raylib-5.0_linux_amd64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raylib/raylib-5.0_linux_amd64/LICENSE -------------------------------------------------------------------------------- /raylib/raylib-5.0_linux_amd64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raylib/raylib-5.0_linux_amd64/README.md -------------------------------------------------------------------------------- /raylib/raylib-5.0_linux_amd64/lib/libraylib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raylib/raylib-5.0_linux_amd64/lib/libraylib.a -------------------------------------------------------------------------------- /raylib/raylib-5.0_linux_amd64/lib/libraylib.so: -------------------------------------------------------------------------------- 1 | libraylib.so.500 -------------------------------------------------------------------------------- /raylib/raylib-5.0_linux_amd64/lib/libraylib.so.5.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raylib/raylib-5.0_linux_amd64/lib/libraylib.so.5.0.0 -------------------------------------------------------------------------------- /raylib/raylib-5.0_linux_amd64/lib/libraylib.so.500: -------------------------------------------------------------------------------- 1 | libraylib.so.5.0.0 -------------------------------------------------------------------------------- /raylib/raylib-5.0_macos/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raylib/raylib-5.0_macos/CHANGELOG -------------------------------------------------------------------------------- /raylib/raylib-5.0_macos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raylib/raylib-5.0_macos/LICENSE -------------------------------------------------------------------------------- /raylib/raylib-5.0_macos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raylib/raylib-5.0_macos/README.md -------------------------------------------------------------------------------- /raylib/raylib-5.0_macos/lib/libraylib.5.0.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raylib/raylib-5.0_macos/lib/libraylib.5.0.0.dylib -------------------------------------------------------------------------------- /raylib/raylib-5.0_macos/lib/libraylib.500.dylib: -------------------------------------------------------------------------------- 1 | libraylib.5.0.0.dylib -------------------------------------------------------------------------------- /raylib/raylib-5.0_macos/lib/libraylib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raylib/raylib-5.0_macos/lib/libraylib.a -------------------------------------------------------------------------------- /raylib/raylib-5.0_macos/lib/libraylib.dylib: -------------------------------------------------------------------------------- 1 | libraylib.5.0.0.dylib -------------------------------------------------------------------------------- /raylib/raylib-5.0_win64_mingw-w64/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raylib/raylib-5.0_win64_mingw-w64/CHANGELOG -------------------------------------------------------------------------------- /raylib/raylib-5.0_win64_mingw-w64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raylib/raylib-5.0_win64_mingw-w64/LICENSE -------------------------------------------------------------------------------- /raylib/raylib-5.0_win64_mingw-w64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raylib/raylib-5.0_win64_mingw-w64/README.md -------------------------------------------------------------------------------- /raylib/raylib-5.0_win64_mingw-w64/lib/libraylib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raylib/raylib-5.0_win64_mingw-w64/lib/libraylib.a -------------------------------------------------------------------------------- /raylib/raylib-5.0_win64_mingw-w64/lib/libraylibdll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raylib/raylib-5.0_win64_mingw-w64/lib/libraylibdll.a -------------------------------------------------------------------------------- /raylib/raylib-5.0_win64_mingw-w64/lib/raylib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raylib/raylib-5.0_win64_mingw-w64/lib/raylib.dll -------------------------------------------------------------------------------- /raymath.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/raymath.ads -------------------------------------------------------------------------------- /test.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/eepers/HEAD/test.adb --------------------------------------------------------------------------------