diff --git a/Android.mk b/Android.mk index bfdc2f8..c4e7371 100755 --- a/Android.mk +++ b/Android.mk @@ -8,7 +8,7 @@ include $(PREBUILT_STATIC_LIBRARY) include $(CLEAR_VARS) LOCAL_MODULE := HOOK LOCAL_SRC_FILES := \ - 主程序.cpp \ + main.cpp \ imgui/imgui.cpp \ imgui/imgui_draw.cpp \ imgui/imgui_tables.cpp \ diff --git a/主程序.cpp b/main.cpp similarity index 99% rename from 主程序.cpp rename to main.cpp index 61293e6..b9d8203 100755 --- a/主程序.cpp +++ b/main.cpp @@ -19,8 +19,8 @@ float density=-1; uintptr_t UE4; android_app*g_App=0; static char s[64]; -#include "引用.h" -#include "菜单.h" +#include "refs.h" +#include "menu.h" EGLBoolean (*orig_eglSwapBuffers)(EGLDisplay dpy, EGLSurface surface); EGLBoolean _eglSwapBuffers(EGLDisplay dpy, EGLSurface surface) { eglQuerySurface(dpy, surface, EGL_WIDTH, &glWidth); diff --git a/菜单.h b/menu.h similarity index 100% rename from 菜单.h rename to menu.h diff --git a/引用.h b/refs.h similarity index 64% rename from 引用.h rename to refs.h index 08001ce..05ba0fd 100755 --- a/引用.h +++ b/refs.h @@ -34,15 +34,15 @@ #include #include #include -#include "structures/memory/Syscall读写.h" -#include "structures/functions/混淆.cpp" +#include "structures/memory/syscall_rw.h" +#include "structures/functions/obfuscate.cpp" #include "structures/functions/Quaternion.hpp" -#include "structures/functions/普通函数.h" -#include "structures/functions/必要函数.h" -#include "structures/data/训练场数据包.h" -#include "structures/data/雪地数据包.h" -#include "structures/data/海岛数据包.h" -#include "structures/data/沙漠数据包.h" -#include "structures/data/雨林数据包.h" -#include "变量.h" +#include "structures/functions/common_funcs.h" +#include "structures/functions/essential_funcs.h" +#include "structures/data/training_data.h" +#include "structures/data/vikendi_data.h" +#include "structures/data/erangel_data.h" +#include "structures/data/desert_data.h" +#include "structures/data/sanhok_data.h" +#include "variables.h" #include "DrawESP.h" \ No newline at end of file diff --git a/structures/data/沙漠数据包.h b/structures/data/desert_data.h similarity index 100% rename from structures/data/沙漠数据包.h rename to structures/data/desert_data.h diff --git a/structures/data/海岛数据包.h b/structures/data/erangel_data.h similarity index 100% rename from structures/data/海岛数据包.h rename to structures/data/erangel_data.h diff --git a/structures/data/雨林数据包.h b/structures/data/sanhok_data.h similarity index 100% rename from structures/data/雨林数据包.h rename to structures/data/sanhok_data.h diff --git a/structures/data/训练场数据包.h b/structures/data/training_data.h similarity index 100% rename from structures/data/训练场数据包.h rename to structures/data/training_data.h diff --git a/structures/data/雪地数据包.h b/structures/data/vikendi_data.h similarity index 100% rename from structures/data/雪地数据包.h rename to structures/data/vikendi_data.h diff --git a/structures/functions/普通函数.h b/structures/functions/common_funcs.h similarity index 100% rename from structures/functions/普通函数.h rename to structures/functions/common_funcs.h diff --git a/structures/functions/必要函数.h b/structures/functions/essential_funcs.h similarity index 100% rename from structures/functions/必要函数.h rename to structures/functions/essential_funcs.h diff --git a/structures/functions/混淆.cpp b/structures/functions/obfuscate.cpp similarity index 85% rename from structures/functions/混淆.cpp rename to structures/functions/obfuscate.cpp index 5b760bc..c50a1c3 100755 --- a/structures/functions/混淆.cpp +++ b/structures/functions/obfuscate.cpp @@ -1,5 +1,5 @@ -#include "混淆.h" +#include "obfuscate.h" size_t& _lxy_oxor_any_::X() { static size_t x = 0; diff --git a/structures/functions/混淆.h b/structures/functions/obfuscate.h similarity index 100% rename from structures/functions/混淆.h rename to structures/functions/obfuscate.h diff --git a/structures/memory/Syscall读写.h b/structures/memory/syscall_rw.h similarity index 100% rename from structures/memory/Syscall读写.h rename to structures/memory/syscall_rw.h diff --git a/变量.h b/variables.h similarity index 100% rename from 变量.h rename to variables.h