├── .github └── workflows │ └── build.yml ├── .gitignore ├── CMakeLists.txt ├── README.md ├── about.md ├── changelog.md ├── include ├── Keybinds.hpp └── OptionalAPI.hpp ├── logo.png ├── mod.json ├── resources ├── controller │ ├── controllerBtn_LB_001.png │ ├── controllerBtn_LT_001.png │ ├── controllerBtn_RB_001.png │ └── controllerBtn_RT_001.png ├── square.png └── turn-arrow.png └── src ├── AltTabFix.cpp ├── ControllerBind.cpp ├── EditorUI.cpp ├── Keybind.cpp ├── Keybinds.cpp ├── KeybindsLayer.cpp ├── KeybindsLayer.hpp ├── MouseBind.cpp ├── UILayer.cpp ├── macos.mm └── main.cpp /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/README.md -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/about.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/changelog.md -------------------------------------------------------------------------------- /include/Keybinds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/include/Keybinds.hpp -------------------------------------------------------------------------------- /include/OptionalAPI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/include/OptionalAPI.hpp -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/logo.png -------------------------------------------------------------------------------- /mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/mod.json -------------------------------------------------------------------------------- /resources/controller/controllerBtn_LB_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/resources/controller/controllerBtn_LB_001.png -------------------------------------------------------------------------------- /resources/controller/controllerBtn_LT_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/resources/controller/controllerBtn_LT_001.png -------------------------------------------------------------------------------- /resources/controller/controllerBtn_RB_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/resources/controller/controllerBtn_RB_001.png -------------------------------------------------------------------------------- /resources/controller/controllerBtn_RT_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/resources/controller/controllerBtn_RT_001.png -------------------------------------------------------------------------------- /resources/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/resources/square.png -------------------------------------------------------------------------------- /resources/turn-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/resources/turn-arrow.png -------------------------------------------------------------------------------- /src/AltTabFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/src/AltTabFix.cpp -------------------------------------------------------------------------------- /src/ControllerBind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/src/ControllerBind.cpp -------------------------------------------------------------------------------- /src/EditorUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/src/EditorUI.cpp -------------------------------------------------------------------------------- /src/Keybind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/src/Keybind.cpp -------------------------------------------------------------------------------- /src/Keybinds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/src/Keybinds.cpp -------------------------------------------------------------------------------- /src/KeybindsLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/src/KeybindsLayer.cpp -------------------------------------------------------------------------------- /src/KeybindsLayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/src/KeybindsLayer.hpp -------------------------------------------------------------------------------- /src/MouseBind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/src/MouseBind.cpp -------------------------------------------------------------------------------- /src/UILayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/src/UILayer.cpp -------------------------------------------------------------------------------- /src/macos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/src/macos.mm -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geode-sdk/CustomKeybinds/HEAD/src/main.cpp --------------------------------------------------------------------------------