├── .gitignore ├── LICENSE ├── README.md ├── img └── main.png ├── imgui ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_internal.h ├── imgui_widgets.cpp ├── imstb_rectpack.h ├── imstb_textedit.h └── imstb_truetype.h ├── league_skin_changer.sln ├── league_skin_changer ├── autoupdater.cpp ├── autoupdater.hpp ├── d3d_hook.cpp ├── d3d_hook.hpp ├── dllmain.cpp ├── encryption.hpp ├── fnv_hash.hpp ├── game_classes.cpp ├── game_classes.hpp ├── imgui_extend.cpp ├── imgui_extend.h ├── imgui_impl_dx11.cpp ├── imgui_impl_dx11.h ├── imgui_impl_dx9.cpp ├── imgui_impl_dx9.h ├── imgui_impl_win32.cpp ├── imgui_impl_win32.h ├── json.hpp ├── league_skin_changer.vcxproj ├── league_skin_changer.vcxproj.filters ├── menu.cpp ├── menu.hpp ├── offsets.cpp ├── offsets.hpp ├── skin_changer.cpp ├── skin_changer.hpp ├── skin_database.cpp ├── skin_database.hpp └── vmt_smart_hook.hpp └── league_skin_injector ├── league_skin_injector.cpp ├── league_skin_injector.vcxproj └── league_skin_injector.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/README.md -------------------------------------------------------------------------------- /img/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/img/main.png -------------------------------------------------------------------------------- /imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/imgui/imconfig.h -------------------------------------------------------------------------------- /imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/imgui/imgui.cpp -------------------------------------------------------------------------------- /imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/imgui/imgui.h -------------------------------------------------------------------------------- /imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/imgui/imgui_internal.h -------------------------------------------------------------------------------- /imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /league_skin_changer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer.sln -------------------------------------------------------------------------------- /league_skin_changer/autoupdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/autoupdater.cpp -------------------------------------------------------------------------------- /league_skin_changer/autoupdater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/autoupdater.hpp -------------------------------------------------------------------------------- /league_skin_changer/d3d_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/d3d_hook.cpp -------------------------------------------------------------------------------- /league_skin_changer/d3d_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/d3d_hook.hpp -------------------------------------------------------------------------------- /league_skin_changer/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/dllmain.cpp -------------------------------------------------------------------------------- /league_skin_changer/encryption.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/encryption.hpp -------------------------------------------------------------------------------- /league_skin_changer/fnv_hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/fnv_hash.hpp -------------------------------------------------------------------------------- /league_skin_changer/game_classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/game_classes.cpp -------------------------------------------------------------------------------- /league_skin_changer/game_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/game_classes.hpp -------------------------------------------------------------------------------- /league_skin_changer/imgui_extend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/imgui_extend.cpp -------------------------------------------------------------------------------- /league_skin_changer/imgui_extend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/imgui_extend.h -------------------------------------------------------------------------------- /league_skin_changer/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /league_skin_changer/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/imgui_impl_dx11.h -------------------------------------------------------------------------------- /league_skin_changer/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /league_skin_changer/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/imgui_impl_dx9.h -------------------------------------------------------------------------------- /league_skin_changer/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /league_skin_changer/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/imgui_impl_win32.h -------------------------------------------------------------------------------- /league_skin_changer/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/json.hpp -------------------------------------------------------------------------------- /league_skin_changer/league_skin_changer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/league_skin_changer.vcxproj -------------------------------------------------------------------------------- /league_skin_changer/league_skin_changer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/league_skin_changer.vcxproj.filters -------------------------------------------------------------------------------- /league_skin_changer/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/menu.cpp -------------------------------------------------------------------------------- /league_skin_changer/menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/menu.hpp -------------------------------------------------------------------------------- /league_skin_changer/offsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/offsets.cpp -------------------------------------------------------------------------------- /league_skin_changer/offsets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/offsets.hpp -------------------------------------------------------------------------------- /league_skin_changer/skin_changer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/skin_changer.cpp -------------------------------------------------------------------------------- /league_skin_changer/skin_changer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/skin_changer.hpp -------------------------------------------------------------------------------- /league_skin_changer/skin_database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/skin_database.cpp -------------------------------------------------------------------------------- /league_skin_changer/skin_database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/skin_database.hpp -------------------------------------------------------------------------------- /league_skin_changer/vmt_smart_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_changer/vmt_smart_hook.hpp -------------------------------------------------------------------------------- /league_skin_injector/league_skin_injector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_injector/league_skin_injector.cpp -------------------------------------------------------------------------------- /league_skin_injector/league_skin_injector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_injector/league_skin_injector.vcxproj -------------------------------------------------------------------------------- /league_skin_injector/league_skin_injector.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3akers/LeagueSkinChanger/HEAD/league_skin_injector/league_skin_injector.vcxproj.filters --------------------------------------------------------------------------------