├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── premake5.lua └── source ├── HookInit.cpp ├── SilentPatchM2DE.cpp ├── VersionInfo.lua └── resources └── VersionInfo.rc /.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/SilentPatchM2DE/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/SilentPatchM2DE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/SilentPatchM2DE/HEAD/README.md -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/SilentPatchM2DE/HEAD/premake5.lua -------------------------------------------------------------------------------- /source/HookInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/SilentPatchM2DE/HEAD/source/HookInit.cpp -------------------------------------------------------------------------------- /source/SilentPatchM2DE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/SilentPatchM2DE/HEAD/source/SilentPatchM2DE.cpp -------------------------------------------------------------------------------- /source/VersionInfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/SilentPatchM2DE/HEAD/source/VersionInfo.lua -------------------------------------------------------------------------------- /source/resources/VersionInfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/SilentPatchM2DE/HEAD/source/resources/VersionInfo.rc --------------------------------------------------------------------------------