Skip to content

Commit

Permalink
android geod being mf bandit
Browse files Browse the repository at this point in the history
  • Loading branch information
user95401 committed Mar 9, 2024
1 parent fae4f8b commit ea6cd93
Show file tree
Hide file tree
Showing 20 changed files with 9 additions and 68,906 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_OSX_ARCHITECTURES "x86_64")
set(GEODE_BINDINGS_REPO_PATH "${CMAKE_CURRENT_LIST_DIR}/bindings")

project(MainLevelsEditor VERSION 3.0.0)
project(MainLevelsEditor VERSION 5.0.0)

if (NOT DEFINED ENV{GEODE_SDK})
message(FATAL_ERROR "Unable to find Geode SDK! Please define GEODE_SDK environment variable to point to Geode")
Expand Down
10 changes: 7 additions & 3 deletions _Src/_YourLocalCfg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,13 @@ void CopyFromData() {
}
}

$on_mod(Loaded) {
CopyFromLoacal();
Mod::get()->loadData();
#include <Geode/modify/LoadingLayer.hpp>
class $modify(LoadingLayer) {
TodoReturn loadingFinished() {
CopyFromLoacal();
Mod::get()->loadData();
LoadingLayer::loadingFinished();
};
};

#include <Geode/modify/AppDelegate.hpp>
Expand Down
2 changes: 1 addition & 1 deletion _Src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ class $modify(PlayLayer) {
class $modify(LoadingLayer) {
TodoReturn loadingFinished() {
//create some inis
LevelSelectLayer::create(0);
//LevelSelectLayer::create(0);
LoadingLayer::loadingFinished();
};
};
Expand Down
Loading

0 comments on commit ea6cd93

Please sign in to comment.