Add tool library for Unreal Engine

This commit is contained in:
2025-09-10 22:05:24 +02:00
parent 6300facedc
commit e9e3d8c10e
3 changed files with 184 additions and 0 deletions

12
UEngine/UEngine.hpp Normal file
View File

@@ -0,0 +1,12 @@
class UE
{
public:
/**
* Get offset calculated from an AOB scan result and an executable base address
*
* @param exeName : A string of the executable name
* @param AOBResult : A valid (uint8_t) pointer to the result of an AOB scan
* @return std::optional<uint32_t> The offset calculated
*/
static std::optional<uint32_t> CalculateOffset(const std::string& exeName, uint8_t* AOBResult);
};