Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Cvolton/best-epic-gd-mods
Best Epic GD Mods
https://github.com/Cvolton/best-epic-gd-mods
geometry-dash geometry-dash-mod
Last synced: 3 months ago
JSON representation
Best Epic GD Mods
- Host: GitHub
- URL: https://github.com/Cvolton/best-epic-gd-mods
- Owner: Cvolton
- License: mit
- Created: 2022-02-18T00:56:58.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-09T19:32:53.000Z (about 1 year ago)
- Last Synced: 2024-08-01T20:36:10.622Z (6 months ago)
- Topics: geometry-dash, geometry-dash-mod
- Language: C++
- Homepage:
- Size: 1.96 MB
- Stars: 22
- Watchers: 2
- Forks: 4
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-geometry-dash - BetterInfo - Adds a lot of extra info to the game (Mods)
README
# Best Epic GD Mods
website here: https://geometrydash.eu/mods/The source code is probably a nice example of how not to do stuff.
# Compiling
I stole the build instructions from [https://github.com/matcool/small-gd-mods](mat) and the rest of the build system too. And `mapped-hooks.hpp` and `utils.hpp` too.1. Clone the repo (make sure to do it recursively `--recursive`)
2. Configure CMake
```
cmake -G "Visual Studio 16 2019" -B build -DCMAKE_BUILD_TYPE=Release -T host=x86 -A win32
```
3. Build
```bash
cmake --build build --config Release --target ALL_BUILD
# you can switch out ALL_BUILD for any specific mod you want to compile
```