├── .clang-format ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakeSettings.json ├── LICENSE ├── README.md ├── examples ├── CMakeLists.txt ├── dllmain.cpp ├── exampleutils.h ├── listactors.h └── listproperties.h ├── include ├── uesdk.hpp └── uesdk │ ├── Macros.hpp │ ├── Offsets.hpp │ ├── State.hpp │ ├── Status.hpp │ ├── Utils.hpp │ ├── core │ ├── Cast.hpp │ ├── FMemory.hpp │ ├── ObjectArray.hpp │ ├── ObjectArray.inl │ ├── UnrealContainers.hpp │ ├── UnrealEnums.hpp │ ├── UnrealObjects.hpp │ ├── UnrealObjects.inl │ └── UnrealTypes.hpp │ └── helpers │ ├── FastSearch.hpp │ ├── PECallWrapper.hpp │ ├── PECallWrapper.inl │ ├── PropertyInfo.hpp │ ├── ReflectionMacros.hpp │ └── TlsArgBuffer.hpp └── src ├── private ├── Memory.cpp ├── Memory.hpp ├── OffsetFinder.cpp └── OffsetFinder.hpp ├── uesdk.cpp └── uesdk ├── core ├── FMemory.cpp ├── ObjectArray.cpp ├── UnrealContainers.cpp ├── UnrealObjects.cpp └── UnrealTypes.cpp └── helpers ├── FastSearch.cpp └── TlsArgBuffer.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/README.md -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/examples/dllmain.cpp -------------------------------------------------------------------------------- /examples/exampleutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/examples/exampleutils.h -------------------------------------------------------------------------------- /examples/listactors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/examples/listactors.h -------------------------------------------------------------------------------- /examples/listproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/examples/listproperties.h -------------------------------------------------------------------------------- /include/uesdk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk.hpp -------------------------------------------------------------------------------- /include/uesdk/Macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/Macros.hpp -------------------------------------------------------------------------------- /include/uesdk/Offsets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/Offsets.hpp -------------------------------------------------------------------------------- /include/uesdk/State.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/State.hpp -------------------------------------------------------------------------------- /include/uesdk/Status.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/Status.hpp -------------------------------------------------------------------------------- /include/uesdk/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/Utils.hpp -------------------------------------------------------------------------------- /include/uesdk/core/Cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/core/Cast.hpp -------------------------------------------------------------------------------- /include/uesdk/core/FMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/core/FMemory.hpp -------------------------------------------------------------------------------- /include/uesdk/core/ObjectArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/core/ObjectArray.hpp -------------------------------------------------------------------------------- /include/uesdk/core/ObjectArray.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/core/ObjectArray.inl -------------------------------------------------------------------------------- /include/uesdk/core/UnrealContainers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/core/UnrealContainers.hpp -------------------------------------------------------------------------------- /include/uesdk/core/UnrealEnums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/core/UnrealEnums.hpp -------------------------------------------------------------------------------- /include/uesdk/core/UnrealObjects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/core/UnrealObjects.hpp -------------------------------------------------------------------------------- /include/uesdk/core/UnrealObjects.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/core/UnrealObjects.inl -------------------------------------------------------------------------------- /include/uesdk/core/UnrealTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/core/UnrealTypes.hpp -------------------------------------------------------------------------------- /include/uesdk/helpers/FastSearch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/helpers/FastSearch.hpp -------------------------------------------------------------------------------- /include/uesdk/helpers/PECallWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/helpers/PECallWrapper.hpp -------------------------------------------------------------------------------- /include/uesdk/helpers/PECallWrapper.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/helpers/PECallWrapper.inl -------------------------------------------------------------------------------- /include/uesdk/helpers/PropertyInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/helpers/PropertyInfo.hpp -------------------------------------------------------------------------------- /include/uesdk/helpers/ReflectionMacros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/helpers/ReflectionMacros.hpp -------------------------------------------------------------------------------- /include/uesdk/helpers/TlsArgBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/include/uesdk/helpers/TlsArgBuffer.hpp -------------------------------------------------------------------------------- /src/private/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/src/private/Memory.cpp -------------------------------------------------------------------------------- /src/private/Memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/src/private/Memory.hpp -------------------------------------------------------------------------------- /src/private/OffsetFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/src/private/OffsetFinder.cpp -------------------------------------------------------------------------------- /src/private/OffsetFinder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/src/private/OffsetFinder.hpp -------------------------------------------------------------------------------- /src/uesdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/src/uesdk.cpp -------------------------------------------------------------------------------- /src/uesdk/core/FMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/src/uesdk/core/FMemory.cpp -------------------------------------------------------------------------------- /src/uesdk/core/ObjectArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/src/uesdk/core/ObjectArray.cpp -------------------------------------------------------------------------------- /src/uesdk/core/UnrealContainers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/src/uesdk/core/UnrealContainers.cpp -------------------------------------------------------------------------------- /src/uesdk/core/UnrealObjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/src/uesdk/core/UnrealObjects.cpp -------------------------------------------------------------------------------- /src/uesdk/core/UnrealTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/src/uesdk/core/UnrealTypes.cpp -------------------------------------------------------------------------------- /src/uesdk/helpers/FastSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/src/uesdk/helpers/FastSearch.cpp -------------------------------------------------------------------------------- /src/uesdk/helpers/TlsArgBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyida/Universal-UE-SDK/HEAD/src/uesdk/helpers/TlsArgBuffer.cpp --------------------------------------------------------------------------------