├── .editorconfig ├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── circle-tool ├── CMakeLists.txt ├── README.md ├── logo.png ├── main.cpp ├── mod.json └── res │ ├── button.png │ └── screenshot.png ├── cmake └── CPM.cmake ├── draw-divide ├── CMakeLists.txt ├── README.md ├── logo.png ├── main.cpp └── mod.json ├── fast-format ├── CMakeLists.txt ├── about.md ├── main.cpp └── mod.json ├── ingame-screenshot ├── CMakeLists.txt ├── RenderTexture.cpp ├── RenderTexture.hpp ├── main.cpp └── mod.json ├── jump-key ├── CMakeLists.txt ├── main.cpp └── mod.json ├── max-window ├── CMakeLists.txt ├── README.md ├── logo.png ├── main.cpp └── mod.json ├── nodes ├── CMakeLists.txt ├── nodes.cpp └── nodes.hpp ├── physics-btns ├── CMakeLists.txt ├── main.cpp └── mod.json ├── reference-image ├── CMakeLists.txt ├── README.md ├── logo.png ├── main.cpp ├── mod.json └── res │ └── button.png ├── run-info ├── CMakeLists.txt ├── README.md ├── changelog.md ├── logo.png ├── main.cpp └── mod.json ├── scroll-zoom ├── CMakeLists.txt ├── README.md ├── logo.png ├── main.cpp └── mod.json ├── song-preview ├── CMakeLists.txt ├── README.md ├── logo.png ├── main.cpp ├── mod.json └── res │ ├── back.png │ └── cursor.png └── song-search ├── CMakeLists.txt ├── about.md ├── main.cpp └── mod.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/README.md -------------------------------------------------------------------------------- /circle-tool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/circle-tool/CMakeLists.txt -------------------------------------------------------------------------------- /circle-tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/circle-tool/README.md -------------------------------------------------------------------------------- /circle-tool/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/circle-tool/logo.png -------------------------------------------------------------------------------- /circle-tool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/circle-tool/main.cpp -------------------------------------------------------------------------------- /circle-tool/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/circle-tool/mod.json -------------------------------------------------------------------------------- /circle-tool/res/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/circle-tool/res/button.png -------------------------------------------------------------------------------- /circle-tool/res/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/circle-tool/res/screenshot.png -------------------------------------------------------------------------------- /cmake/CPM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/cmake/CPM.cmake -------------------------------------------------------------------------------- /draw-divide/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/draw-divide/CMakeLists.txt -------------------------------------------------------------------------------- /draw-divide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/draw-divide/README.md -------------------------------------------------------------------------------- /draw-divide/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/draw-divide/logo.png -------------------------------------------------------------------------------- /draw-divide/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/draw-divide/main.cpp -------------------------------------------------------------------------------- /draw-divide/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/draw-divide/mod.json -------------------------------------------------------------------------------- /fast-format/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/fast-format/CMakeLists.txt -------------------------------------------------------------------------------- /fast-format/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/fast-format/about.md -------------------------------------------------------------------------------- /fast-format/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/fast-format/main.cpp -------------------------------------------------------------------------------- /fast-format/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/fast-format/mod.json -------------------------------------------------------------------------------- /ingame-screenshot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/ingame-screenshot/CMakeLists.txt -------------------------------------------------------------------------------- /ingame-screenshot/RenderTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/ingame-screenshot/RenderTexture.cpp -------------------------------------------------------------------------------- /ingame-screenshot/RenderTexture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/ingame-screenshot/RenderTexture.hpp -------------------------------------------------------------------------------- /ingame-screenshot/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/ingame-screenshot/main.cpp -------------------------------------------------------------------------------- /ingame-screenshot/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/ingame-screenshot/mod.json -------------------------------------------------------------------------------- /jump-key/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/jump-key/CMakeLists.txt -------------------------------------------------------------------------------- /jump-key/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/jump-key/main.cpp -------------------------------------------------------------------------------- /jump-key/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/jump-key/mod.json -------------------------------------------------------------------------------- /max-window/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/max-window/CMakeLists.txt -------------------------------------------------------------------------------- /max-window/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/max-window/README.md -------------------------------------------------------------------------------- /max-window/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/max-window/logo.png -------------------------------------------------------------------------------- /max-window/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/max-window/main.cpp -------------------------------------------------------------------------------- /max-window/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/max-window/mod.json -------------------------------------------------------------------------------- /nodes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/nodes/CMakeLists.txt -------------------------------------------------------------------------------- /nodes/nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/nodes/nodes.cpp -------------------------------------------------------------------------------- /nodes/nodes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/nodes/nodes.hpp -------------------------------------------------------------------------------- /physics-btns/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/physics-btns/CMakeLists.txt -------------------------------------------------------------------------------- /physics-btns/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/physics-btns/main.cpp -------------------------------------------------------------------------------- /physics-btns/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/physics-btns/mod.json -------------------------------------------------------------------------------- /reference-image/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/reference-image/CMakeLists.txt -------------------------------------------------------------------------------- /reference-image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/reference-image/README.md -------------------------------------------------------------------------------- /reference-image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/reference-image/logo.png -------------------------------------------------------------------------------- /reference-image/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/reference-image/main.cpp -------------------------------------------------------------------------------- /reference-image/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/reference-image/mod.json -------------------------------------------------------------------------------- /reference-image/res/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/reference-image/res/button.png -------------------------------------------------------------------------------- /run-info/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/run-info/CMakeLists.txt -------------------------------------------------------------------------------- /run-info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/run-info/README.md -------------------------------------------------------------------------------- /run-info/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/run-info/changelog.md -------------------------------------------------------------------------------- /run-info/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/run-info/logo.png -------------------------------------------------------------------------------- /run-info/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/run-info/main.cpp -------------------------------------------------------------------------------- /run-info/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/run-info/mod.json -------------------------------------------------------------------------------- /scroll-zoom/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/scroll-zoom/CMakeLists.txt -------------------------------------------------------------------------------- /scroll-zoom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/scroll-zoom/README.md -------------------------------------------------------------------------------- /scroll-zoom/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/scroll-zoom/logo.png -------------------------------------------------------------------------------- /scroll-zoom/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/scroll-zoom/main.cpp -------------------------------------------------------------------------------- /scroll-zoom/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/scroll-zoom/mod.json -------------------------------------------------------------------------------- /song-preview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/song-preview/CMakeLists.txt -------------------------------------------------------------------------------- /song-preview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/song-preview/README.md -------------------------------------------------------------------------------- /song-preview/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/song-preview/logo.png -------------------------------------------------------------------------------- /song-preview/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/song-preview/main.cpp -------------------------------------------------------------------------------- /song-preview/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/song-preview/mod.json -------------------------------------------------------------------------------- /song-preview/res/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/song-preview/res/back.png -------------------------------------------------------------------------------- /song-preview/res/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/song-preview/res/cursor.png -------------------------------------------------------------------------------- /song-search/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/song-search/CMakeLists.txt -------------------------------------------------------------------------------- /song-search/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/song-search/about.md -------------------------------------------------------------------------------- /song-search/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/song-search/main.cpp -------------------------------------------------------------------------------- /song-search/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/geode-mods/HEAD/song-search/mod.json --------------------------------------------------------------------------------