├── .gitignore ├── Common ├── Common.vcxproj ├── Common.vcxproj.filters ├── cpp.hint └── src │ ├── Config.cpp │ ├── Config.h │ ├── Logger.cpp │ ├── Logger.h │ ├── constants.h │ ├── framework.h │ ├── pch.cpp │ ├── pch.h │ ├── util.cpp │ └── util.h ├── Config.jsonc ├── Config.schema.json ├── Injector ├── Injector.vcxproj ├── Injector.vcxproj.filters └── src │ ├── Injector.cpp │ ├── Injector.h │ ├── framework.h │ ├── main.cpp │ ├── pch.cpp │ └── pch.h ├── Integration ├── Integration.aps ├── Integration.rc ├── Integration.vcxproj ├── Integration.vcxproj.filters ├── cpp.hint ├── resource.h └── src │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ ├── pch.h │ ├── version_exports.cpp │ └── version_exports.h ├── IntegrationWizard ├── IntegrationWizard.vcxproj ├── IntegrationWizard.vcxproj.filters ├── Resource.aps ├── Resource.rc ├── resource.h └── src │ ├── IntegrationWizard.cpp │ ├── IntegrationWizard.h │ ├── framework.h │ ├── integration_wizard_util.cpp │ ├── integration_wizard_util.h │ ├── pch.cpp │ ├── pch.h │ └── winmain.cpp ├── Koalageddon.sln ├── Koalageddon.sln.DotSettings ├── LICENSE.txt ├── README.md ├── Unlocker ├── Unlocker.vcxproj ├── Unlocker.vcxproj.filters ├── cpp.hint └── src │ ├── DLLMonitor.cpp │ ├── DLLMonitor.h │ ├── PatternMatcher.cpp │ ├── PatternMatcher.h │ ├── ProcessHooker.cpp │ ├── ProcessHooker.h │ ├── Unlocker.cpp │ ├── Unlocker.h │ ├── UpdateChecker.cpp │ ├── UpdateChecker.h │ ├── dllmain.cpp │ ├── framework.h │ ├── hook_util.cpp │ ├── hook_util.h │ ├── ntapi.h │ ├── pch.cpp │ ├── pch.h │ └── platforms │ ├── BasePlatform.cpp │ ├── BasePlatform.h │ ├── ea │ ├── ea_desktop │ │ ├── EADesktop.cpp │ │ ├── EADesktop.h │ │ ├── ea_desktop_hooks.cpp │ │ └── ea_desktop_hooks.h │ ├── ea_util.cpp │ ├── ea_util.h │ └── origin │ │ ├── Origin.cpp │ │ ├── Origin.h │ │ ├── origin_hooks.cpp │ │ └── origin_hooks.h │ ├── epic │ ├── Epic.cpp │ ├── Epic.h │ ├── eos_base.h │ ├── eos_common.h │ ├── eos_ecom_types.h │ ├── eos_hooks.cpp │ ├── eos_hooks.h │ └── eos_result.h │ ├── steam │ ├── Steam.cpp │ ├── Steam.h │ ├── steam_hooks.cpp │ ├── steam_hooks.h │ ├── steam_ordinals.h │ └── steamtypes.h │ ├── steam_client │ ├── SteamClient.cpp │ ├── SteamClient.h │ ├── steam_client_hooks.cpp │ └── steam_client_hooks.h │ ├── uplay_r1 │ ├── UplayR1.cpp │ ├── UplayR1.h │ ├── uplay_r1_hooks.cpp │ └── uplay_r1_hooks.h │ └── uplay_r2 │ ├── UplayR2.cpp │ ├── UplayR2.h │ ├── uplay_r2_hooks.cpp │ └── uplay_r2_hooks.h ├── icon.ico ├── inno_setup.iss └── install_vcpkg_dependencies.bat /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | _Build 3 | *.vcxproj.user -------------------------------------------------------------------------------- /Common/Common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Common/Common.vcxproj -------------------------------------------------------------------------------- /Common/Common.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Common/Common.vcxproj.filters -------------------------------------------------------------------------------- /Common/cpp.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Common/cpp.hint -------------------------------------------------------------------------------- /Common/src/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Common/src/Config.cpp -------------------------------------------------------------------------------- /Common/src/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Common/src/Config.h -------------------------------------------------------------------------------- /Common/src/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Common/src/Logger.cpp -------------------------------------------------------------------------------- /Common/src/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Common/src/Logger.h -------------------------------------------------------------------------------- /Common/src/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Common/src/constants.h -------------------------------------------------------------------------------- /Common/src/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Common/src/framework.h -------------------------------------------------------------------------------- /Common/src/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /Common/src/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "framework.h" 3 | -------------------------------------------------------------------------------- /Common/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Common/src/util.cpp -------------------------------------------------------------------------------- /Common/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Common/src/util.h -------------------------------------------------------------------------------- /Config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Config.jsonc -------------------------------------------------------------------------------- /Config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Config.schema.json -------------------------------------------------------------------------------- /Injector/Injector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Injector/Injector.vcxproj -------------------------------------------------------------------------------- /Injector/Injector.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Injector/Injector.vcxproj.filters -------------------------------------------------------------------------------- /Injector/src/Injector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Injector/src/Injector.cpp -------------------------------------------------------------------------------- /Injector/src/Injector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Injector/src/Injector.h -------------------------------------------------------------------------------- /Injector/src/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Injector/src/framework.h -------------------------------------------------------------------------------- /Injector/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Injector/src/main.cpp -------------------------------------------------------------------------------- /Injector/src/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /Injector/src/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "framework.h" 3 | -------------------------------------------------------------------------------- /Integration/Integration.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Integration/Integration.aps -------------------------------------------------------------------------------- /Integration/Integration.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Integration/Integration.rc -------------------------------------------------------------------------------- /Integration/Integration.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Integration/Integration.vcxproj -------------------------------------------------------------------------------- /Integration/Integration.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Integration/Integration.vcxproj.filters -------------------------------------------------------------------------------- /Integration/cpp.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Integration/cpp.hint -------------------------------------------------------------------------------- /Integration/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Integration/resource.h -------------------------------------------------------------------------------- /Integration/src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Integration/src/dllmain.cpp -------------------------------------------------------------------------------- /Integration/src/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Integration/src/framework.h -------------------------------------------------------------------------------- /Integration/src/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Integration/src/pch.cpp -------------------------------------------------------------------------------- /Integration/src/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Integration/src/pch.h -------------------------------------------------------------------------------- /Integration/src/version_exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Integration/src/version_exports.cpp -------------------------------------------------------------------------------- /Integration/src/version_exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Integration/src/version_exports.h -------------------------------------------------------------------------------- /IntegrationWizard/IntegrationWizard.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/IntegrationWizard/IntegrationWizard.vcxproj -------------------------------------------------------------------------------- /IntegrationWizard/IntegrationWizard.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/IntegrationWizard/IntegrationWizard.vcxproj.filters -------------------------------------------------------------------------------- /IntegrationWizard/Resource.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/IntegrationWizard/Resource.aps -------------------------------------------------------------------------------- /IntegrationWizard/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/IntegrationWizard/Resource.rc -------------------------------------------------------------------------------- /IntegrationWizard/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/IntegrationWizard/resource.h -------------------------------------------------------------------------------- /IntegrationWizard/src/IntegrationWizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/IntegrationWizard/src/IntegrationWizard.cpp -------------------------------------------------------------------------------- /IntegrationWizard/src/IntegrationWizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/IntegrationWizard/src/IntegrationWizard.h -------------------------------------------------------------------------------- /IntegrationWizard/src/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/IntegrationWizard/src/framework.h -------------------------------------------------------------------------------- /IntegrationWizard/src/integration_wizard_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/IntegrationWizard/src/integration_wizard_util.cpp -------------------------------------------------------------------------------- /IntegrationWizard/src/integration_wizard_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/IntegrationWizard/src/integration_wizard_util.h -------------------------------------------------------------------------------- /IntegrationWizard/src/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /IntegrationWizard/src/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "framework.h" 4 | -------------------------------------------------------------------------------- /IntegrationWizard/src/winmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/IntegrationWizard/src/winmain.cpp -------------------------------------------------------------------------------- /Koalageddon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Koalageddon.sln -------------------------------------------------------------------------------- /Koalageddon.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Koalageddon.sln.DotSettings -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/README.md -------------------------------------------------------------------------------- /Unlocker/Unlocker.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/Unlocker.vcxproj -------------------------------------------------------------------------------- /Unlocker/Unlocker.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/Unlocker.vcxproj.filters -------------------------------------------------------------------------------- /Unlocker/cpp.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/cpp.hint -------------------------------------------------------------------------------- /Unlocker/src/DLLMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/DLLMonitor.cpp -------------------------------------------------------------------------------- /Unlocker/src/DLLMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/DLLMonitor.h -------------------------------------------------------------------------------- /Unlocker/src/PatternMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/PatternMatcher.cpp -------------------------------------------------------------------------------- /Unlocker/src/PatternMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/PatternMatcher.h -------------------------------------------------------------------------------- /Unlocker/src/ProcessHooker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/ProcessHooker.cpp -------------------------------------------------------------------------------- /Unlocker/src/ProcessHooker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/ProcessHooker.h -------------------------------------------------------------------------------- /Unlocker/src/Unlocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/Unlocker.cpp -------------------------------------------------------------------------------- /Unlocker/src/Unlocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/Unlocker.h -------------------------------------------------------------------------------- /Unlocker/src/UpdateChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/UpdateChecker.cpp -------------------------------------------------------------------------------- /Unlocker/src/UpdateChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/UpdateChecker.h -------------------------------------------------------------------------------- /Unlocker/src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/dllmain.cpp -------------------------------------------------------------------------------- /Unlocker/src/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/framework.h -------------------------------------------------------------------------------- /Unlocker/src/hook_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/hook_util.cpp -------------------------------------------------------------------------------- /Unlocker/src/hook_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/hook_util.h -------------------------------------------------------------------------------- /Unlocker/src/ntapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/ntapi.h -------------------------------------------------------------------------------- /Unlocker/src/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/pch.cpp -------------------------------------------------------------------------------- /Unlocker/src/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "framework.h" 3 | -------------------------------------------------------------------------------- /Unlocker/src/platforms/BasePlatform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/BasePlatform.cpp -------------------------------------------------------------------------------- /Unlocker/src/platforms/BasePlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/BasePlatform.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/ea/ea_desktop/EADesktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/ea/ea_desktop/EADesktop.cpp -------------------------------------------------------------------------------- /Unlocker/src/platforms/ea/ea_desktop/EADesktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/ea/ea_desktop/EADesktop.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/ea/ea_desktop/ea_desktop_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/ea/ea_desktop/ea_desktop_hooks.cpp -------------------------------------------------------------------------------- /Unlocker/src/platforms/ea/ea_desktop/ea_desktop_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/ea/ea_desktop/ea_desktop_hooks.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/ea/ea_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/ea/ea_util.cpp -------------------------------------------------------------------------------- /Unlocker/src/platforms/ea/ea_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/ea/ea_util.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/ea/origin/Origin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/ea/origin/Origin.cpp -------------------------------------------------------------------------------- /Unlocker/src/platforms/ea/origin/Origin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/ea/origin/Origin.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/ea/origin/origin_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/ea/origin/origin_hooks.cpp -------------------------------------------------------------------------------- /Unlocker/src/platforms/ea/origin/origin_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/ea/origin/origin_hooks.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/epic/Epic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/epic/Epic.cpp -------------------------------------------------------------------------------- /Unlocker/src/platforms/epic/Epic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/epic/Epic.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/epic/eos_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/epic/eos_base.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/epic/eos_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/epic/eos_common.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/epic/eos_ecom_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/epic/eos_ecom_types.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/epic/eos_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/epic/eos_hooks.cpp -------------------------------------------------------------------------------- /Unlocker/src/platforms/epic/eos_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/epic/eos_hooks.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/epic/eos_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/epic/eos_result.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/steam/Steam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/steam/Steam.cpp -------------------------------------------------------------------------------- /Unlocker/src/platforms/steam/Steam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/steam/Steam.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/steam/steam_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/steam/steam_hooks.cpp -------------------------------------------------------------------------------- /Unlocker/src/platforms/steam/steam_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/steam/steam_hooks.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/steam/steam_ordinals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/steam/steam_ordinals.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/steam/steamtypes.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/steam_client/SteamClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/steam_client/SteamClient.cpp -------------------------------------------------------------------------------- /Unlocker/src/platforms/steam_client/SteamClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/steam_client/SteamClient.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/steam_client/steam_client_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/steam_client/steam_client_hooks.cpp -------------------------------------------------------------------------------- /Unlocker/src/platforms/steam_client/steam_client_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/steam_client/steam_client_hooks.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/uplay_r1/UplayR1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/uplay_r1/UplayR1.cpp -------------------------------------------------------------------------------- /Unlocker/src/platforms/uplay_r1/UplayR1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/uplay_r1/UplayR1.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/uplay_r1/uplay_r1_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/uplay_r1/uplay_r1_hooks.cpp -------------------------------------------------------------------------------- /Unlocker/src/platforms/uplay_r1/uplay_r1_hooks.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "hook_util.h" 4 | 5 | int UPLAY_USER_IsOwned(int aUplayId); 6 | -------------------------------------------------------------------------------- /Unlocker/src/platforms/uplay_r2/UplayR2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/uplay_r2/UplayR2.cpp -------------------------------------------------------------------------------- /Unlocker/src/platforms/uplay_r2/UplayR2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/uplay_r2/UplayR2.h -------------------------------------------------------------------------------- /Unlocker/src/platforms/uplay_r2/uplay_r2_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/uplay_r2/uplay_r2_hooks.cpp -------------------------------------------------------------------------------- /Unlocker/src/platforms/uplay_r2/uplay_r2_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/Unlocker/src/platforms/uplay_r2/uplay_r2_hooks.h -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/icon.ico -------------------------------------------------------------------------------- /inno_setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/inno_setup.iss -------------------------------------------------------------------------------- /install_vcpkg_dependencies.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/Koalageddon/HEAD/install_vcpkg_dependencies.bat --------------------------------------------------------------------------------