├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .idea ├── .gitignore ├── BL3EGSUnlocker.iml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml └── modules.xml ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── res └── BL3EGSUnlocker.jsonc └── src ├── main.cpp └── unlocker ├── unlocker.cpp └── unlocker.hpp /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/BL3EGSUnlocker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/BL3EGSUnlocker/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | .idea/vcs.xml 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/BL3EGSUnlocker/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/BL3EGSUnlocker/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/BL3EGSUnlocker.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/BL3EGSUnlocker/HEAD/.idea/BL3EGSUnlocker.iml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/BL3EGSUnlocker/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/BL3EGSUnlocker/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/BL3EGSUnlocker/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/BL3EGSUnlocker/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/BL3EGSUnlocker/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/BL3EGSUnlocker/HEAD/README.md -------------------------------------------------------------------------------- /res/BL3EGSUnlocker.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/BL3EGSUnlocker/HEAD/res/BL3EGSUnlocker.jsonc -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/BL3EGSUnlocker/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/unlocker/unlocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/BL3EGSUnlocker/HEAD/src/unlocker/unlocker.cpp -------------------------------------------------------------------------------- /src/unlocker/unlocker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/BL3EGSUnlocker/HEAD/src/unlocker/unlocker.hpp --------------------------------------------------------------------------------