File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11#include < charconv>
22
3- #include < geode.custom-keybinds/include/Keybinds.hpp>
4-
53#include < Geode/Geode.hpp>
64
75#include < Geode/modify/MenuLayer.hpp>
1513
1614#include " settings.hpp"
1715
18- using namespace geode ::prelude;
19- using namespace keybinds ;
20-
2116#if defined(GEODE_IS_ANDROID) || defined(GEODE_IS_IOS)
2217#include " mobile.hpp"
2318#endif
2419
20+ using namespace geode ::prelude;
21+
2522float clamp (float d, float min, float max) {
2623 const float t = d < min ? min : d;
2724 return t > max ? max : t;
Original file line number Diff line number Diff line change 11#include " settings.hpp"
22
3- #include < geode.custom-keybinds/include/Keybinds.hpp>
43#include < Geode/Geode.hpp>
54
65using namespace geode ::prelude;
6+
7+ #if defined(GEODE_IS_WINDOWS)
8+ #include < geode.custom-keybinds/include/Keybinds.hpp>
79using namespace keybinds ;
10+ #endif
811
912SettingsManager* SettingsManager::get () {
1013 static auto inst = new SettingsManager;
You can’t perform that action at this time.
0 commit comments