├── !Update.ps1 ├── .clang-format ├── .gitattributes ├── .gitmodules ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE ├── cmake ├── Version.h.in └── version.rc.in ├── docs └── en │ └── Descriptions of Annotations.md ├── src ├── Hooks.cpp ├── Hooks.h ├── LoadGame.cpp ├── LoadGame.h ├── OpenAnimationReplacer │ ├── API │ │ ├── OpenAnimationReplacer-ConditionTypes.cpp │ │ ├── OpenAnimationReplacer-ConditionTypes.h │ │ ├── OpenAnimationReplacerAPI-Conditions.cpp │ │ └── OpenAnimationReplacerAPI-Conditions.h │ ├── Conditions.cpp │ └── Conditions.h ├── PCH.h ├── Patches.h ├── PrecisionAPI.h ├── Settings.cpp ├── Settings.h ├── SpecialStaggerHandler.cpp ├── SpecialStaggerHandler.h ├── Utils.h └── main.cpp └── vcpkg.json /!Update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/!Update.ps1 -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | \!Update.ps1 linguist-vendored -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/LICENSE -------------------------------------------------------------------------------- /cmake/Version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/cmake/Version.h.in -------------------------------------------------------------------------------- /cmake/version.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/cmake/version.rc.in -------------------------------------------------------------------------------- /docs/en/Descriptions of Annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/docs/en/Descriptions of Annotations.md -------------------------------------------------------------------------------- /src/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/Hooks.cpp -------------------------------------------------------------------------------- /src/Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/Hooks.h -------------------------------------------------------------------------------- /src/LoadGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/LoadGame.cpp -------------------------------------------------------------------------------- /src/LoadGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/LoadGame.h -------------------------------------------------------------------------------- /src/OpenAnimationReplacer/API/OpenAnimationReplacer-ConditionTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/OpenAnimationReplacer/API/OpenAnimationReplacer-ConditionTypes.cpp -------------------------------------------------------------------------------- /src/OpenAnimationReplacer/API/OpenAnimationReplacer-ConditionTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/OpenAnimationReplacer/API/OpenAnimationReplacer-ConditionTypes.h -------------------------------------------------------------------------------- /src/OpenAnimationReplacer/API/OpenAnimationReplacerAPI-Conditions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/OpenAnimationReplacer/API/OpenAnimationReplacerAPI-Conditions.cpp -------------------------------------------------------------------------------- /src/OpenAnimationReplacer/API/OpenAnimationReplacerAPI-Conditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/OpenAnimationReplacer/API/OpenAnimationReplacerAPI-Conditions.h -------------------------------------------------------------------------------- /src/OpenAnimationReplacer/Conditions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/OpenAnimationReplacer/Conditions.cpp -------------------------------------------------------------------------------- /src/OpenAnimationReplacer/Conditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/OpenAnimationReplacer/Conditions.h -------------------------------------------------------------------------------- /src/PCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/PCH.h -------------------------------------------------------------------------------- /src/Patches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/Patches.h -------------------------------------------------------------------------------- /src/PrecisionAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/PrecisionAPI.h -------------------------------------------------------------------------------- /src/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/Settings.cpp -------------------------------------------------------------------------------- /src/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/Settings.h -------------------------------------------------------------------------------- /src/SpecialStaggerHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/SpecialStaggerHandler.cpp -------------------------------------------------------------------------------- /src/SpecialStaggerHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/SpecialStaggerHandler.h -------------------------------------------------------------------------------- /src/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/Utils.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/src/main.cpp -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-su-2019/ModernStaggerLock/HEAD/vcpkg.json --------------------------------------------------------------------------------