├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── injector ├── CMakeLists.txt ├── XorStr.h └── main.cpp ├── internal ├── BuffManager │ ├── BuffManager.cpp │ └── BuffManager.h ├── CMakeLists.txt ├── ConfigManager │ ├── Config.cpp │ ├── Config.h │ └── json.hpp ├── Console │ ├── Console.cpp │ └── Console.h ├── Constants.h ├── Decrypt │ ├── Decrypt.cpp │ └── Decrypt.h ├── DelayedAction │ └── DelayedAction.h ├── Enums.h ├── Evade │ ├── Evade.cpp │ └── Evade.h ├── EventManager │ ├── EventManager.cpp │ └── EventManager.h ├── Geometry │ ├── Geometry.h │ ├── clipper.cpp │ └── clipper.hpp ├── Hooks │ ├── Hooks.cpp │ ├── Hooks.h │ ├── UltimateHooks.cpp │ └── UltimateHooks.h ├── LeagueFunctions │ ├── LeagueFunctions.cpp │ └── LeagueFunctions.h ├── ObjectManager │ ├── ObjectManager.cpp │ └── ObjectManager.h ├── OrbWalker │ ├── OrbWalker.cpp │ └── OrbWalker.h ├── Patchables │ ├── CharacterData.h │ ├── Offsets.cpp │ ├── Offsets.h │ └── Structs.h ├── Plugins │ ├── PluginLoader.h │ ├── Prediction │ │ ├── Health.cpp │ │ └── Health.h │ └── Utilities │ │ └── WaypointTracker.h ├── Rendering │ ├── D3DRenderer.cpp │ ├── D3DRenderer.h │ ├── ImRender.cpp │ ├── ImRender.h │ ├── Menu.cpp │ └── Menu.h ├── Security │ ├── AntiDetection.cpp │ └── AntiDetection.h ├── SpellBase.cpp ├── SpellBase.h ├── SpellInstance │ ├── Spellbase.cpp │ └── Spellbase.h ├── TargetSelector │ ├── TargetSelector.cpp │ └── TargetSelector.h ├── Utils │ ├── AutoUpdater.cpp │ ├── AutoUpdater.h │ ├── Helper.cpp │ ├── Helper.h │ ├── Utils.cpp │ └── Utils.h ├── Vector.cpp ├── Vector.h ├── XorStr.h ├── dllmain.cpp └── libraries │ └── boolinq.h ├── libraries ├── CMakeLists.txt ├── DirectSysCalls │ ├── XorStr.h │ └── makesyscall.h ├── ImGui │ ├── CMakeLists.txt │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_dx11.cpp │ ├── imgui_impl_dx11.h │ ├── imgui_impl_dx9.cpp │ ├── imgui_impl_dx9.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 ├── MSDetours │ ├── CMakeLists.txt │ ├── creatwth.cpp │ ├── detours.cpp │ ├── detours.h │ ├── detver.h │ ├── disasm.cpp │ ├── disolarm.cpp │ ├── disolarm64.cpp │ ├── disolia64.cpp │ ├── disolx64.cpp │ ├── disolx86.cpp │ ├── image.cpp │ ├── modules.cpp │ └── uimports.cpp ├── Memory │ ├── CMakeLists.txt │ ├── Memory.cpp │ └── Memory.h └── Zydis │ ├── CMakeLists.txt │ ├── Zycore │ ├── API │ │ ├── Memory.h │ │ ├── Synchronization.h │ │ ├── Terminal.h │ │ └── Thread.h │ ├── Allocator.h │ ├── ArgParse.h │ ├── Bitset.h │ ├── Comparison.h │ ├── Defines.h │ ├── Format.h │ ├── LibC.h │ ├── List.h │ ├── Object.h │ ├── Status.h │ ├── String.h │ ├── Types.h │ ├── Vector.h │ └── Zycore.h │ ├── ZycoreExportConfig.h │ ├── Zydis │ ├── Decoder.h │ ├── DecoderTypes.h │ ├── Formatter.h │ ├── FormatterBuffer.h │ ├── Generated │ │ ├── EnumISAExt.h │ │ ├── EnumISASet.h │ │ ├── EnumInstructionCategory.h │ │ ├── EnumMnemonic.h │ │ └── EnumRegister.h │ ├── Internal │ │ ├── DecoderData.h │ │ ├── FormatterATT.h │ │ ├── FormatterBase.h │ │ ├── FormatterIntel.h │ │ ├── SharedData.h │ │ └── String.h │ ├── MetaInfo.h │ ├── Mnemonic.h │ ├── Register.h │ ├── SharedTypes.h │ ├── ShortString.h │ ├── Status.h │ ├── Utils.h │ ├── Zydis.h │ └── src │ │ ├── Decoder.c │ │ ├── DecoderData.c │ │ ├── Formatter.c │ │ ├── FormatterATT.c │ │ ├── FormatterBase.c │ │ ├── FormatterBuffer.c │ │ ├── FormatterIntel.c │ │ ├── Generated │ │ ├── AccessedFlags.inc │ │ ├── DecoderTables.inc │ │ ├── EncodableInstructions.inc │ │ ├── EnumISAExt.inc │ │ ├── EnumISASet.inc │ │ ├── EnumInstructionCategory.inc │ │ ├── EnumMnemonic.inc │ │ ├── EnumRegister.inc │ │ ├── FormatterStrings.inc │ │ ├── InstructionDefinitions.inc │ │ ├── InstructionEncodings.inc │ │ └── OperandDefinitions.inc │ │ ├── MetaInfo.c │ │ ├── Mnemonic.c │ │ ├── Register.c │ │ ├── SharedData.c │ │ ├── String.c │ │ ├── Utils.c │ │ └── Zydis.c │ └── ZydisExportConfig.h ├── processdumper ├── CMakeLists.txt ├── DynArray.h ├── close_watcher.cpp ├── close_watcher.h ├── dirent.h ├── dump_process.cpp ├── dump_process.h ├── export_list.cpp ├── export_list.h ├── hash.cpp ├── hash.h ├── module_list.cpp ├── module_list.h ├── pd.cpp ├── pe_exports.cpp ├── pe_exports.h ├── pe_hash_database.cpp ├── pe_hash_database.h ├── pe_header.cpp ├── pe_header.h ├── pe_imports.cpp ├── pe_imports.h ├── simple.cpp ├── simple.h ├── stdafx.cpp ├── stdafx.h ├── stream_wrapper.h ├── targetver.h ├── terminate_monitor_hook.cpp ├── terminate_monitor_hook.h ├── utils.h └── work_queue.h └── pytools ├── README.md └── pytools.py /.gitignore: -------------------------------------------------------------------------------- 1 | [Bb]uild -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/README.md -------------------------------------------------------------------------------- /injector/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/injector/CMakeLists.txt -------------------------------------------------------------------------------- /injector/XorStr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/injector/XorStr.h -------------------------------------------------------------------------------- /injector/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/injector/main.cpp -------------------------------------------------------------------------------- /internal/BuffManager/BuffManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/BuffManager/BuffManager.cpp -------------------------------------------------------------------------------- /internal/BuffManager/BuffManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/BuffManager/BuffManager.h -------------------------------------------------------------------------------- /internal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/CMakeLists.txt -------------------------------------------------------------------------------- /internal/ConfigManager/Config.cpp: -------------------------------------------------------------------------------- 1 | #include "Config.h" -------------------------------------------------------------------------------- /internal/ConfigManager/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/ConfigManager/Config.h -------------------------------------------------------------------------------- /internal/ConfigManager/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/ConfigManager/json.hpp -------------------------------------------------------------------------------- /internal/Console/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Console/Console.cpp -------------------------------------------------------------------------------- /internal/Console/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Console/Console.h -------------------------------------------------------------------------------- /internal/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Constants.h -------------------------------------------------------------------------------- /internal/Decrypt/Decrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Decrypt/Decrypt.cpp -------------------------------------------------------------------------------- /internal/Decrypt/Decrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Decrypt/Decrypt.h -------------------------------------------------------------------------------- /internal/DelayedAction/DelayedAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/DelayedAction/DelayedAction.h -------------------------------------------------------------------------------- /internal/Enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Enums.h -------------------------------------------------------------------------------- /internal/Evade/Evade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Evade/Evade.cpp -------------------------------------------------------------------------------- /internal/Evade/Evade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Evade/Evade.h -------------------------------------------------------------------------------- /internal/EventManager/EventManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/EventManager/EventManager.cpp -------------------------------------------------------------------------------- /internal/EventManager/EventManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/EventManager/EventManager.h -------------------------------------------------------------------------------- /internal/Geometry/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Geometry/Geometry.h -------------------------------------------------------------------------------- /internal/Geometry/clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Geometry/clipper.cpp -------------------------------------------------------------------------------- /internal/Geometry/clipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Geometry/clipper.hpp -------------------------------------------------------------------------------- /internal/Hooks/Hooks.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/Hooks/Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Hooks/Hooks.h -------------------------------------------------------------------------------- /internal/Hooks/UltimateHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Hooks/UltimateHooks.cpp -------------------------------------------------------------------------------- /internal/Hooks/UltimateHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Hooks/UltimateHooks.h -------------------------------------------------------------------------------- /internal/LeagueFunctions/LeagueFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/LeagueFunctions/LeagueFunctions.cpp -------------------------------------------------------------------------------- /internal/LeagueFunctions/LeagueFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/LeagueFunctions/LeagueFunctions.h -------------------------------------------------------------------------------- /internal/ObjectManager/ObjectManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ObjectManager/ObjectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/ObjectManager/ObjectManager.h -------------------------------------------------------------------------------- /internal/OrbWalker/OrbWalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/OrbWalker/OrbWalker.cpp -------------------------------------------------------------------------------- /internal/OrbWalker/OrbWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/OrbWalker/OrbWalker.h -------------------------------------------------------------------------------- /internal/Patchables/CharacterData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Patchables/CharacterData.h -------------------------------------------------------------------------------- /internal/Patchables/Offsets.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/Patchables/Offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Patchables/Offsets.h -------------------------------------------------------------------------------- /internal/Patchables/Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Patchables/Structs.h -------------------------------------------------------------------------------- /internal/Plugins/PluginLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Plugins/PluginLoader.h -------------------------------------------------------------------------------- /internal/Plugins/Prediction/Health.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Plugins/Prediction/Health.cpp -------------------------------------------------------------------------------- /internal/Plugins/Prediction/Health.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Plugins/Prediction/Health.h -------------------------------------------------------------------------------- /internal/Plugins/Utilities/WaypointTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Plugins/Utilities/WaypointTracker.h -------------------------------------------------------------------------------- /internal/Rendering/D3DRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Rendering/D3DRenderer.cpp -------------------------------------------------------------------------------- /internal/Rendering/D3DRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Rendering/D3DRenderer.h -------------------------------------------------------------------------------- /internal/Rendering/ImRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Rendering/ImRender.cpp -------------------------------------------------------------------------------- /internal/Rendering/ImRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Rendering/ImRender.h -------------------------------------------------------------------------------- /internal/Rendering/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Rendering/Menu.cpp -------------------------------------------------------------------------------- /internal/Rendering/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Rendering/Menu.h -------------------------------------------------------------------------------- /internal/Security/AntiDetection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Security/AntiDetection.cpp -------------------------------------------------------------------------------- /internal/Security/AntiDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Security/AntiDetection.h -------------------------------------------------------------------------------- /internal/SpellBase.cpp: -------------------------------------------------------------------------------- 1 | #include "Spellbase.h" 2 | -------------------------------------------------------------------------------- /internal/SpellBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/SpellBase.h -------------------------------------------------------------------------------- /internal/SpellInstance/Spellbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/SpellInstance/Spellbase.cpp -------------------------------------------------------------------------------- /internal/SpellInstance/Spellbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/SpellInstance/Spellbase.h -------------------------------------------------------------------------------- /internal/TargetSelector/TargetSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/TargetSelector/TargetSelector.cpp -------------------------------------------------------------------------------- /internal/TargetSelector/TargetSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/TargetSelector/TargetSelector.h -------------------------------------------------------------------------------- /internal/Utils/AutoUpdater.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/Utils/AutoUpdater.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/Utils/Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Utils/Helper.cpp -------------------------------------------------------------------------------- /internal/Utils/Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Utils/Helper.h -------------------------------------------------------------------------------- /internal/Utils/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Utils/Utils.cpp -------------------------------------------------------------------------------- /internal/Utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Utils/Utils.h -------------------------------------------------------------------------------- /internal/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Vector.cpp -------------------------------------------------------------------------------- /internal/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/Vector.h -------------------------------------------------------------------------------- /internal/XorStr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/XorStr.h -------------------------------------------------------------------------------- /internal/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/dllmain.cpp -------------------------------------------------------------------------------- /internal/libraries/boolinq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/internal/libraries/boolinq.h -------------------------------------------------------------------------------- /libraries/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/DirectSysCalls/XorStr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/DirectSysCalls/XorStr.h -------------------------------------------------------------------------------- /libraries/DirectSysCalls/makesyscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/DirectSysCalls/makesyscall.h -------------------------------------------------------------------------------- /libraries/ImGui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/ImGui/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/ImGui/imconfig.h -------------------------------------------------------------------------------- /libraries/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/ImGui/imgui.cpp -------------------------------------------------------------------------------- /libraries/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/ImGui/imgui.h -------------------------------------------------------------------------------- /libraries/ImGui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/ImGui/imgui_demo.cpp -------------------------------------------------------------------------------- /libraries/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /libraries/ImGui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/ImGui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /libraries/ImGui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/ImGui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /libraries/ImGui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/ImGui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /libraries/ImGui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/ImGui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /libraries/ImGui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/ImGui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /libraries/ImGui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/ImGui/imgui_impl_win32.h -------------------------------------------------------------------------------- /libraries/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /libraries/ImGui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/ImGui/imgui_tables.cpp -------------------------------------------------------------------------------- /libraries/ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /libraries/ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /libraries/ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /libraries/ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /libraries/MSDetours/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/MSDetours/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/MSDetours/creatwth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/MSDetours/creatwth.cpp -------------------------------------------------------------------------------- /libraries/MSDetours/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/MSDetours/detours.cpp -------------------------------------------------------------------------------- /libraries/MSDetours/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/MSDetours/detours.h -------------------------------------------------------------------------------- /libraries/MSDetours/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/MSDetours/detver.h -------------------------------------------------------------------------------- /libraries/MSDetours/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/MSDetours/disasm.cpp -------------------------------------------------------------------------------- /libraries/MSDetours/disolarm.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_ARM_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /libraries/MSDetours/disolarm64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_ARM64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /libraries/MSDetours/disolia64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_IA64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /libraries/MSDetours/disolx64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_X64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /libraries/MSDetours/disolx86.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_X86_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /libraries/MSDetours/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/MSDetours/image.cpp -------------------------------------------------------------------------------- /libraries/MSDetours/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/MSDetours/modules.cpp -------------------------------------------------------------------------------- /libraries/MSDetours/uimports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/MSDetours/uimports.cpp -------------------------------------------------------------------------------- /libraries/Memory/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Memory/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/Memory/Memory.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Memory/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Memory/Memory.h -------------------------------------------------------------------------------- /libraries/Zydis/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project(Zydis) -------------------------------------------------------------------------------- /libraries/Zydis/Zycore/API/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zycore/API/Memory.h -------------------------------------------------------------------------------- /libraries/Zydis/Zycore/API/Synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zycore/API/Synchronization.h -------------------------------------------------------------------------------- /libraries/Zydis/Zycore/API/Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zycore/API/Terminal.h -------------------------------------------------------------------------------- /libraries/Zydis/Zycore/API/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zycore/API/Thread.h -------------------------------------------------------------------------------- /libraries/Zydis/Zycore/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zycore/Allocator.h -------------------------------------------------------------------------------- /libraries/Zydis/Zycore/ArgParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zycore/ArgParse.h -------------------------------------------------------------------------------- /libraries/Zydis/Zycore/Bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zycore/Bitset.h -------------------------------------------------------------------------------- /libraries/Zydis/Zycore/Comparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zycore/Comparison.h -------------------------------------------------------------------------------- /libraries/Zydis/Zycore/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zycore/Defines.h -------------------------------------------------------------------------------- /libraries/Zydis/Zycore/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zycore/Format.h -------------------------------------------------------------------------------- /libraries/Zydis/Zycore/LibC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zycore/LibC.h -------------------------------------------------------------------------------- /libraries/Zydis/Zycore/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zycore/List.h -------------------------------------------------------------------------------- /libraries/Zydis/Zycore/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zycore/Object.h -------------------------------------------------------------------------------- /libraries/Zydis/Zycore/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zycore/Status.h -------------------------------------------------------------------------------- /libraries/Zydis/Zycore/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zycore/String.h -------------------------------------------------------------------------------- /libraries/Zydis/Zycore/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zycore/Types.h -------------------------------------------------------------------------------- /libraries/Zydis/Zycore/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zycore/Vector.h -------------------------------------------------------------------------------- /libraries/Zydis/Zycore/Zycore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zycore/Zycore.h -------------------------------------------------------------------------------- /libraries/Zydis/ZycoreExportConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/ZycoreExportConfig.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/Decoder.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/DecoderTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/DecoderTypes.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/Formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/Formatter.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/FormatterBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/FormatterBuffer.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/Generated/EnumISAExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/Generated/EnumISAExt.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/Generated/EnumISASet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/Generated/EnumISASet.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/Generated/EnumInstructionCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/Generated/EnumInstructionCategory.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/Generated/EnumMnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/Generated/EnumMnemonic.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/Generated/EnumRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/Generated/EnumRegister.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/Internal/DecoderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/Internal/DecoderData.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/Internal/FormatterATT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/Internal/FormatterATT.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/Internal/FormatterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/Internal/FormatterBase.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/Internal/FormatterIntel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/Internal/FormatterIntel.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/Internal/SharedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/Internal/SharedData.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/Internal/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/Internal/String.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/MetaInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/MetaInfo.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/Mnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/Mnemonic.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/Register.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/SharedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/SharedTypes.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/ShortString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/ShortString.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/Status.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/Utils.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/Zydis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/Zydis.h -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/Decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/Decoder.c -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/DecoderData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/DecoderData.c -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/Formatter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/Formatter.c -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/FormatterATT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/FormatterATT.c -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/FormatterBase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/FormatterBase.c -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/FormatterBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/FormatterBuffer.c -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/FormatterIntel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/FormatterIntel.c -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/Generated/AccessedFlags.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/Generated/AccessedFlags.inc -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/Generated/DecoderTables.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/Generated/DecoderTables.inc -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/Generated/EncodableInstructions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/Generated/EncodableInstructions.inc -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/Generated/EnumISAExt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/Generated/EnumISAExt.inc -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/Generated/EnumISASet.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/Generated/EnumISASet.inc -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/Generated/EnumInstructionCategory.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/Generated/EnumInstructionCategory.inc -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/Generated/EnumMnemonic.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/Generated/EnumMnemonic.inc -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/Generated/EnumRegister.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/Generated/EnumRegister.inc -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/Generated/FormatterStrings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/Generated/FormatterStrings.inc -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/Generated/InstructionDefinitions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/Generated/InstructionDefinitions.inc -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/Generated/InstructionEncodings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/Generated/InstructionEncodings.inc -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/Generated/OperandDefinitions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/Generated/OperandDefinitions.inc -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/MetaInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/MetaInfo.c -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/Mnemonic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/Mnemonic.c -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/Register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/Register.c -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/SharedData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/SharedData.c -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/String.c -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/Utils.c -------------------------------------------------------------------------------- /libraries/Zydis/Zydis/src/Zydis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/Zydis/src/Zydis.c -------------------------------------------------------------------------------- /libraries/Zydis/ZydisExportConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/libraries/Zydis/ZydisExportConfig.h -------------------------------------------------------------------------------- /processdumper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/CMakeLists.txt -------------------------------------------------------------------------------- /processdumper/DynArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/DynArray.h -------------------------------------------------------------------------------- /processdumper/close_watcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/close_watcher.cpp -------------------------------------------------------------------------------- /processdumper/close_watcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/close_watcher.h -------------------------------------------------------------------------------- /processdumper/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/dirent.h -------------------------------------------------------------------------------- /processdumper/dump_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/dump_process.cpp -------------------------------------------------------------------------------- /processdumper/dump_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/dump_process.h -------------------------------------------------------------------------------- /processdumper/export_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/export_list.cpp -------------------------------------------------------------------------------- /processdumper/export_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/export_list.h -------------------------------------------------------------------------------- /processdumper/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/hash.cpp -------------------------------------------------------------------------------- /processdumper/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/hash.h -------------------------------------------------------------------------------- /processdumper/module_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/module_list.cpp -------------------------------------------------------------------------------- /processdumper/module_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/module_list.h -------------------------------------------------------------------------------- /processdumper/pd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/pd.cpp -------------------------------------------------------------------------------- /processdumper/pe_exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/pe_exports.cpp -------------------------------------------------------------------------------- /processdumper/pe_exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/pe_exports.h -------------------------------------------------------------------------------- /processdumper/pe_hash_database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/pe_hash_database.cpp -------------------------------------------------------------------------------- /processdumper/pe_hash_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/pe_hash_database.h -------------------------------------------------------------------------------- /processdumper/pe_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/pe_header.cpp -------------------------------------------------------------------------------- /processdumper/pe_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/pe_header.h -------------------------------------------------------------------------------- /processdumper/pe_imports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/pe_imports.cpp -------------------------------------------------------------------------------- /processdumper/pe_imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/pe_imports.h -------------------------------------------------------------------------------- /processdumper/simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/simple.cpp -------------------------------------------------------------------------------- /processdumper/simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/simple.h -------------------------------------------------------------------------------- /processdumper/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/stdafx.cpp -------------------------------------------------------------------------------- /processdumper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/stdafx.h -------------------------------------------------------------------------------- /processdumper/stream_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/stream_wrapper.h -------------------------------------------------------------------------------- /processdumper/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/targetver.h -------------------------------------------------------------------------------- /processdumper/terminate_monitor_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/terminate_monitor_hook.cpp -------------------------------------------------------------------------------- /processdumper/terminate_monitor_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/terminate_monitor_hook.h -------------------------------------------------------------------------------- /processdumper/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/utils.h -------------------------------------------------------------------------------- /processdumper/work_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/processdumper/work_queue.h -------------------------------------------------------------------------------- /pytools/README.md: -------------------------------------------------------------------------------- 1 | # SpaceGlider - pytools 2 | -------------------------------------------------------------------------------- /pytools/pytools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueOfLegend-Hacks/SpaceGlider/HEAD/pytools/pytools.py --------------------------------------------------------------------------------