├── .gitignore ├── LICENSE.md ├── README.md ├── splendid_implant ├── dllmain.cpp ├── game_structs.hpp ├── mem_utils.hpp ├── splendid_implant.vcxproj └── splendid_implant.vcxproj.filters ├── splendid_implanter.sln ├── splendid_implanter ├── LDE64x64.lib ├── be_bypass.hpp ├── main.cpp ├── misc_utils.hpp ├── splendid_implanter.vcxproj ├── splendid_implanter.vcxproj.filters └── win_utils.hpp └── vswhere.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haram/splendid_implanter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haram/splendid_implanter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haram/splendid_implanter/HEAD/README.md -------------------------------------------------------------------------------- /splendid_implant/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haram/splendid_implanter/HEAD/splendid_implant/dllmain.cpp -------------------------------------------------------------------------------- /splendid_implant/game_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haram/splendid_implanter/HEAD/splendid_implant/game_structs.hpp -------------------------------------------------------------------------------- /splendid_implant/mem_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haram/splendid_implanter/HEAD/splendid_implant/mem_utils.hpp -------------------------------------------------------------------------------- /splendid_implant/splendid_implant.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haram/splendid_implanter/HEAD/splendid_implant/splendid_implant.vcxproj -------------------------------------------------------------------------------- /splendid_implant/splendid_implant.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haram/splendid_implanter/HEAD/splendid_implant/splendid_implant.vcxproj.filters -------------------------------------------------------------------------------- /splendid_implanter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haram/splendid_implanter/HEAD/splendid_implanter.sln -------------------------------------------------------------------------------- /splendid_implanter/LDE64x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haram/splendid_implanter/HEAD/splendid_implanter/LDE64x64.lib -------------------------------------------------------------------------------- /splendid_implanter/be_bypass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haram/splendid_implanter/HEAD/splendid_implanter/be_bypass.hpp -------------------------------------------------------------------------------- /splendid_implanter/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haram/splendid_implanter/HEAD/splendid_implanter/main.cpp -------------------------------------------------------------------------------- /splendid_implanter/misc_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haram/splendid_implanter/HEAD/splendid_implanter/misc_utils.hpp -------------------------------------------------------------------------------- /splendid_implanter/splendid_implanter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haram/splendid_implanter/HEAD/splendid_implanter/splendid_implanter.vcxproj -------------------------------------------------------------------------------- /splendid_implanter/splendid_implanter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haram/splendid_implanter/HEAD/splendid_implanter/splendid_implanter.vcxproj.filters -------------------------------------------------------------------------------- /splendid_implanter/win_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haram/splendid_implanter/HEAD/splendid_implanter/win_utils.hpp -------------------------------------------------------------------------------- /vswhere.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haram/splendid_implanter/HEAD/vswhere.exe --------------------------------------------------------------------------------