├── .github └── workflows │ └── msbuild.yml ├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── LICENSE ├── docs └── README.md ├── genshin-scripting-framework.sln ├── gsf-client ├── api │ ├── api_controls.cpp │ ├── api_controls.h │ ├── api_game.cpp │ ├── api_game.h │ ├── api_gsf.cpp │ ├── api_gsf.h │ ├── api_imgui.cpp │ ├── api_imgui.h │ ├── api_mem.cpp │ ├── api_mem.h │ ├── api_win.cpp │ ├── api_win.h │ ├── i_api.h │ └── script_apis.h ├── callback_manager.cpp ├── callback_manager.h ├── cpp.hint ├── dllmain.cpp ├── game.cpp ├── game.h ├── global.h ├── gsf-client.vcxproj ├── gsf-client.vcxproj.filters ├── gsf-client.vcxproj.user ├── gsf_client.cpp ├── gsf_client.h ├── helpers │ ├── imgui_prompts.cpp │ └── imgui_prompts.h ├── hooks.cpp ├── hooks.h ├── log_manager.cpp ├── log_manager.h ├── menu │ ├── menu.cpp │ ├── menu.h │ ├── tab_about.cpp │ ├── tab_about.h │ ├── tab_logs.cpp │ ├── tab_logs.h │ ├── tab_misc.cpp │ ├── tab_misc.h │ ├── tab_scripts.cpp │ └── tab_scripts.h ├── script.cpp ├── script.h ├── script_manager.cpp ├── script_manager.h └── sdk │ ├── il2cpp │ └── il2cpp.h │ ├── sdk.h │ ├── structures.h │ └── unity │ ├── enums.h │ ├── unity.h │ ├── unity_animator.h │ ├── unity_camera.h │ ├── unity_component.h │ ├── unity_cursor.h │ ├── unity_input.h │ ├── unity_jsonutility.h │ ├── unity_object.h │ ├── unity_primitive_types.h │ ├── unity_scripting_api.h │ ├── unity_transform.h │ └── unity_vector3.h ├── gsf-launcher ├── gsf-launcher.cpp ├── gsf-launcher.vcxproj ├── gsf-launcher.vcxproj.filters └── gsf-launcher.vcxproj.user ├── thirdparty ├── imgui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui.vcxitems │ ├── imgui.vcxitems.user │ ├── imgui_draw.cpp │ ├── imgui_impl_dx11.cpp │ ├── imgui_impl_dx11.h │ ├── imgui_impl_win32.cpp │ ├── imgui_impl_win32.h │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── license_imgui.txt ├── license_minhook.txt ├── lua │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lcode.c │ ├── lcode.h │ ├── lcorolib.c │ ├── lctype.c │ ├── lctype.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── ljumptab.h │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── lopnames.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lprefix.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.c │ ├── lua.h │ ├── lua.hpp │ ├── lua.vcxitems │ ├── lua.vcxitems.user │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lutf8lib.c │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ └── lzio.h ├── minhook │ ├── MinHook.h │ ├── minhook.vcxitems │ ├── minhook.vcxitems.user │ └── src │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── hde │ │ ├── hde32.c │ │ ├── hde32.h │ │ ├── hde64.c │ │ ├── hde64.h │ │ ├── pstdint.h │ │ ├── table32.h │ │ └── table64.h │ │ ├── hook.c │ │ ├── trampoline.c │ │ └── trampoline.h └── sol │ ├── config.hpp │ ├── forward.hpp │ ├── sol.hpp │ ├── sol.vcxitems │ └── sol.vcxitems.user └── utils ├── console.cpp ├── console.h ├── hash.h ├── hooking.cpp ├── hooking.h ├── loadlibrary.cpp ├── loadlibrary.h ├── macro.h ├── mem.cpp ├── mem.h ├── misc_utils.cpp ├── misc_utils.h ├── utils.vcxitems ├── utils.vcxitems.user ├── winapi_helper.cpp ├── winapi_helper.h ├── winternal.cpp └── winternal.h /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/docs/README.md -------------------------------------------------------------------------------- /genshin-scripting-framework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/genshin-scripting-framework.sln -------------------------------------------------------------------------------- /gsf-client/api/api_controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/api/api_controls.cpp -------------------------------------------------------------------------------- /gsf-client/api/api_controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/api/api_controls.h -------------------------------------------------------------------------------- /gsf-client/api/api_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/api/api_game.cpp -------------------------------------------------------------------------------- /gsf-client/api/api_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/api/api_game.h -------------------------------------------------------------------------------- /gsf-client/api/api_gsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/api/api_gsf.cpp -------------------------------------------------------------------------------- /gsf-client/api/api_gsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/api/api_gsf.h -------------------------------------------------------------------------------- /gsf-client/api/api_imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/api/api_imgui.cpp -------------------------------------------------------------------------------- /gsf-client/api/api_imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/api/api_imgui.h -------------------------------------------------------------------------------- /gsf-client/api/api_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/api/api_mem.cpp -------------------------------------------------------------------------------- /gsf-client/api/api_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/api/api_mem.h -------------------------------------------------------------------------------- /gsf-client/api/api_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/api/api_win.cpp -------------------------------------------------------------------------------- /gsf-client/api/api_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/api/api_win.h -------------------------------------------------------------------------------- /gsf-client/api/i_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/api/i_api.h -------------------------------------------------------------------------------- /gsf-client/api/script_apis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/api/script_apis.h -------------------------------------------------------------------------------- /gsf-client/callback_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/callback_manager.cpp -------------------------------------------------------------------------------- /gsf-client/callback_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/callback_manager.h -------------------------------------------------------------------------------- /gsf-client/cpp.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/cpp.hint -------------------------------------------------------------------------------- /gsf-client/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/dllmain.cpp -------------------------------------------------------------------------------- /gsf-client/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/game.cpp -------------------------------------------------------------------------------- /gsf-client/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/game.h -------------------------------------------------------------------------------- /gsf-client/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/global.h -------------------------------------------------------------------------------- /gsf-client/gsf-client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/gsf-client.vcxproj -------------------------------------------------------------------------------- /gsf-client/gsf-client.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/gsf-client.vcxproj.filters -------------------------------------------------------------------------------- /gsf-client/gsf-client.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/gsf-client.vcxproj.user -------------------------------------------------------------------------------- /gsf-client/gsf_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/gsf_client.cpp -------------------------------------------------------------------------------- /gsf-client/gsf_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/gsf_client.h -------------------------------------------------------------------------------- /gsf-client/helpers/imgui_prompts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/helpers/imgui_prompts.cpp -------------------------------------------------------------------------------- /gsf-client/helpers/imgui_prompts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/helpers/imgui_prompts.h -------------------------------------------------------------------------------- /gsf-client/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/hooks.cpp -------------------------------------------------------------------------------- /gsf-client/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/hooks.h -------------------------------------------------------------------------------- /gsf-client/log_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/log_manager.cpp -------------------------------------------------------------------------------- /gsf-client/log_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/log_manager.h -------------------------------------------------------------------------------- /gsf-client/menu/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/menu/menu.cpp -------------------------------------------------------------------------------- /gsf-client/menu/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/menu/menu.h -------------------------------------------------------------------------------- /gsf-client/menu/tab_about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/menu/tab_about.cpp -------------------------------------------------------------------------------- /gsf-client/menu/tab_about.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace gsf::menu::tab_about 4 | { 5 | void render_tab(); 6 | } -------------------------------------------------------------------------------- /gsf-client/menu/tab_logs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/menu/tab_logs.cpp -------------------------------------------------------------------------------- /gsf-client/menu/tab_logs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/menu/tab_logs.h -------------------------------------------------------------------------------- /gsf-client/menu/tab_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/menu/tab_misc.cpp -------------------------------------------------------------------------------- /gsf-client/menu/tab_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/menu/tab_misc.h -------------------------------------------------------------------------------- /gsf-client/menu/tab_scripts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/menu/tab_scripts.cpp -------------------------------------------------------------------------------- /gsf-client/menu/tab_scripts.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace gsf::menu::tab_scripts 4 | { 5 | void render_tab(); 6 | } -------------------------------------------------------------------------------- /gsf-client/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/script.cpp -------------------------------------------------------------------------------- /gsf-client/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/script.h -------------------------------------------------------------------------------- /gsf-client/script_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/script_manager.cpp -------------------------------------------------------------------------------- /gsf-client/script_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/script_manager.h -------------------------------------------------------------------------------- /gsf-client/sdk/il2cpp/il2cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/sdk/il2cpp/il2cpp.h -------------------------------------------------------------------------------- /gsf-client/sdk/sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/sdk/sdk.h -------------------------------------------------------------------------------- /gsf-client/sdk/structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/sdk/structures.h -------------------------------------------------------------------------------- /gsf-client/sdk/unity/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/sdk/unity/enums.h -------------------------------------------------------------------------------- /gsf-client/sdk/unity/unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/sdk/unity/unity.h -------------------------------------------------------------------------------- /gsf-client/sdk/unity/unity_animator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/sdk/unity/unity_animator.h -------------------------------------------------------------------------------- /gsf-client/sdk/unity/unity_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/sdk/unity/unity_camera.h -------------------------------------------------------------------------------- /gsf-client/sdk/unity/unity_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/sdk/unity/unity_component.h -------------------------------------------------------------------------------- /gsf-client/sdk/unity/unity_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/sdk/unity/unity_cursor.h -------------------------------------------------------------------------------- /gsf-client/sdk/unity/unity_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/sdk/unity/unity_input.h -------------------------------------------------------------------------------- /gsf-client/sdk/unity/unity_jsonutility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/sdk/unity/unity_jsonutility.h -------------------------------------------------------------------------------- /gsf-client/sdk/unity/unity_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/sdk/unity/unity_object.h -------------------------------------------------------------------------------- /gsf-client/sdk/unity/unity_primitive_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/sdk/unity/unity_primitive_types.h -------------------------------------------------------------------------------- /gsf-client/sdk/unity/unity_scripting_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/sdk/unity/unity_scripting_api.h -------------------------------------------------------------------------------- /gsf-client/sdk/unity/unity_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/sdk/unity/unity_transform.h -------------------------------------------------------------------------------- /gsf-client/sdk/unity/unity_vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-client/sdk/unity/unity_vector3.h -------------------------------------------------------------------------------- /gsf-launcher/gsf-launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-launcher/gsf-launcher.cpp -------------------------------------------------------------------------------- /gsf-launcher/gsf-launcher.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-launcher/gsf-launcher.vcxproj -------------------------------------------------------------------------------- /gsf-launcher/gsf-launcher.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-launcher/gsf-launcher.vcxproj.filters -------------------------------------------------------------------------------- /gsf-launcher/gsf-launcher.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/gsf-launcher/gsf-launcher.vcxproj.user -------------------------------------------------------------------------------- /thirdparty/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/imgui/imconfig.h -------------------------------------------------------------------------------- /thirdparty/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/imgui/imgui.cpp -------------------------------------------------------------------------------- /thirdparty/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/imgui/imgui.h -------------------------------------------------------------------------------- /thirdparty/imgui/imgui.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/imgui/imgui.vcxitems -------------------------------------------------------------------------------- /thirdparty/imgui/imgui.vcxitems.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/imgui/imgui.vcxitems.user -------------------------------------------------------------------------------- /thirdparty/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /thirdparty/imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /thirdparty/imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /thirdparty/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /thirdparty/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /thirdparty/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/imgui/imgui_internal.h -------------------------------------------------------------------------------- /thirdparty/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /thirdparty/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /thirdparty/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /thirdparty/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /thirdparty/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /thirdparty/license_imgui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/license_imgui.txt -------------------------------------------------------------------------------- /thirdparty/license_minhook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/license_minhook.txt -------------------------------------------------------------------------------- /thirdparty/lua/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lapi.c -------------------------------------------------------------------------------- /thirdparty/lua/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lapi.h -------------------------------------------------------------------------------- /thirdparty/lua/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lauxlib.c -------------------------------------------------------------------------------- /thirdparty/lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lauxlib.h -------------------------------------------------------------------------------- /thirdparty/lua/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lbaselib.c -------------------------------------------------------------------------------- /thirdparty/lua/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lcode.c -------------------------------------------------------------------------------- /thirdparty/lua/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lcode.h -------------------------------------------------------------------------------- /thirdparty/lua/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lcorolib.c -------------------------------------------------------------------------------- /thirdparty/lua/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lctype.c -------------------------------------------------------------------------------- /thirdparty/lua/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lctype.h -------------------------------------------------------------------------------- /thirdparty/lua/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/ldblib.c -------------------------------------------------------------------------------- /thirdparty/lua/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/ldebug.c -------------------------------------------------------------------------------- /thirdparty/lua/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/ldebug.h -------------------------------------------------------------------------------- /thirdparty/lua/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/ldo.c -------------------------------------------------------------------------------- /thirdparty/lua/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/ldo.h -------------------------------------------------------------------------------- /thirdparty/lua/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/ldump.c -------------------------------------------------------------------------------- /thirdparty/lua/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lfunc.c -------------------------------------------------------------------------------- /thirdparty/lua/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lfunc.h -------------------------------------------------------------------------------- /thirdparty/lua/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lgc.c -------------------------------------------------------------------------------- /thirdparty/lua/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lgc.h -------------------------------------------------------------------------------- /thirdparty/lua/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/linit.c -------------------------------------------------------------------------------- /thirdparty/lua/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/liolib.c -------------------------------------------------------------------------------- /thirdparty/lua/ljumptab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/ljumptab.h -------------------------------------------------------------------------------- /thirdparty/lua/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/llex.c -------------------------------------------------------------------------------- /thirdparty/lua/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/llex.h -------------------------------------------------------------------------------- /thirdparty/lua/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/llimits.h -------------------------------------------------------------------------------- /thirdparty/lua/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lmathlib.c -------------------------------------------------------------------------------- /thirdparty/lua/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lmem.c -------------------------------------------------------------------------------- /thirdparty/lua/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lmem.h -------------------------------------------------------------------------------- /thirdparty/lua/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/loadlib.c -------------------------------------------------------------------------------- /thirdparty/lua/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lobject.c -------------------------------------------------------------------------------- /thirdparty/lua/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lobject.h -------------------------------------------------------------------------------- /thirdparty/lua/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lopcodes.c -------------------------------------------------------------------------------- /thirdparty/lua/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lopcodes.h -------------------------------------------------------------------------------- /thirdparty/lua/lopnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lopnames.h -------------------------------------------------------------------------------- /thirdparty/lua/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/loslib.c -------------------------------------------------------------------------------- /thirdparty/lua/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lparser.c -------------------------------------------------------------------------------- /thirdparty/lua/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lparser.h -------------------------------------------------------------------------------- /thirdparty/lua/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lprefix.h -------------------------------------------------------------------------------- /thirdparty/lua/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lstate.c -------------------------------------------------------------------------------- /thirdparty/lua/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lstate.h -------------------------------------------------------------------------------- /thirdparty/lua/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lstring.c -------------------------------------------------------------------------------- /thirdparty/lua/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lstring.h -------------------------------------------------------------------------------- /thirdparty/lua/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lstrlib.c -------------------------------------------------------------------------------- /thirdparty/lua/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/ltable.c -------------------------------------------------------------------------------- /thirdparty/lua/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/ltable.h -------------------------------------------------------------------------------- /thirdparty/lua/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/ltablib.c -------------------------------------------------------------------------------- /thirdparty/lua/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/ltm.c -------------------------------------------------------------------------------- /thirdparty/lua/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/ltm.h -------------------------------------------------------------------------------- /thirdparty/lua/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lua.c -------------------------------------------------------------------------------- /thirdparty/lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lua.h -------------------------------------------------------------------------------- /thirdparty/lua/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lua.hpp -------------------------------------------------------------------------------- /thirdparty/lua/lua.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lua.vcxitems -------------------------------------------------------------------------------- /thirdparty/lua/lua.vcxitems.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lua.vcxitems.user -------------------------------------------------------------------------------- /thirdparty/lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/luaconf.h -------------------------------------------------------------------------------- /thirdparty/lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lualib.h -------------------------------------------------------------------------------- /thirdparty/lua/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lundump.c -------------------------------------------------------------------------------- /thirdparty/lua/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lundump.h -------------------------------------------------------------------------------- /thirdparty/lua/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lutf8lib.c -------------------------------------------------------------------------------- /thirdparty/lua/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lvm.c -------------------------------------------------------------------------------- /thirdparty/lua/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lvm.h -------------------------------------------------------------------------------- /thirdparty/lua/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lzio.c -------------------------------------------------------------------------------- /thirdparty/lua/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/lua/lzio.h -------------------------------------------------------------------------------- /thirdparty/minhook/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/minhook/MinHook.h -------------------------------------------------------------------------------- /thirdparty/minhook/minhook.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/minhook/minhook.vcxitems -------------------------------------------------------------------------------- /thirdparty/minhook/minhook.vcxitems.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/minhook/minhook.vcxitems.user -------------------------------------------------------------------------------- /thirdparty/minhook/src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/minhook/src/buffer.c -------------------------------------------------------------------------------- /thirdparty/minhook/src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/minhook/src/buffer.h -------------------------------------------------------------------------------- /thirdparty/minhook/src/hde/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/minhook/src/hde/hde32.c -------------------------------------------------------------------------------- /thirdparty/minhook/src/hde/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/minhook/src/hde/hde32.h -------------------------------------------------------------------------------- /thirdparty/minhook/src/hde/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/minhook/src/hde/hde64.c -------------------------------------------------------------------------------- /thirdparty/minhook/src/hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/minhook/src/hde/hde64.h -------------------------------------------------------------------------------- /thirdparty/minhook/src/hde/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/minhook/src/hde/pstdint.h -------------------------------------------------------------------------------- /thirdparty/minhook/src/hde/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/minhook/src/hde/table32.h -------------------------------------------------------------------------------- /thirdparty/minhook/src/hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/minhook/src/hde/table64.h -------------------------------------------------------------------------------- /thirdparty/minhook/src/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/minhook/src/hook.c -------------------------------------------------------------------------------- /thirdparty/minhook/src/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/minhook/src/trampoline.c -------------------------------------------------------------------------------- /thirdparty/minhook/src/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/minhook/src/trampoline.h -------------------------------------------------------------------------------- /thirdparty/sol/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/sol/config.hpp -------------------------------------------------------------------------------- /thirdparty/sol/forward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/sol/forward.hpp -------------------------------------------------------------------------------- /thirdparty/sol/sol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/sol/sol.hpp -------------------------------------------------------------------------------- /thirdparty/sol/sol.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/sol/sol.vcxitems -------------------------------------------------------------------------------- /thirdparty/sol/sol.vcxitems.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/thirdparty/sol/sol.vcxitems.user -------------------------------------------------------------------------------- /utils/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/utils/console.cpp -------------------------------------------------------------------------------- /utils/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/utils/console.h -------------------------------------------------------------------------------- /utils/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/utils/hash.h -------------------------------------------------------------------------------- /utils/hooking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/utils/hooking.cpp -------------------------------------------------------------------------------- /utils/hooking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/utils/hooking.h -------------------------------------------------------------------------------- /utils/loadlibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/utils/loadlibrary.cpp -------------------------------------------------------------------------------- /utils/loadlibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/utils/loadlibrary.h -------------------------------------------------------------------------------- /utils/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/utils/macro.h -------------------------------------------------------------------------------- /utils/mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/utils/mem.cpp -------------------------------------------------------------------------------- /utils/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/utils/mem.h -------------------------------------------------------------------------------- /utils/misc_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/utils/misc_utils.cpp -------------------------------------------------------------------------------- /utils/misc_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/utils/misc_utils.h -------------------------------------------------------------------------------- /utils/utils.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/utils/utils.vcxitems -------------------------------------------------------------------------------- /utils/utils.vcxitems.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/utils/utils.vcxitems.user -------------------------------------------------------------------------------- /utils/winapi_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/utils/winapi_helper.cpp -------------------------------------------------------------------------------- /utils/winapi_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/utils/winapi_helper.h -------------------------------------------------------------------------------- /utils/winternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/utils/winternal.cpp -------------------------------------------------------------------------------- /utils/winternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u16rogue/genshin-scripting-framework/HEAD/utils/winternal.h --------------------------------------------------------------------------------