124 files changed.

This commit is contained in:
Milxnor
2023-04-15 19:53:58 -04:00
parent 63473de425
commit bbf28ed9e9
124 changed files with 60988 additions and 577 deletions

View File

@@ -2,6 +2,7 @@
#include "Array.h"
#include "Map.h"
#include "CurveTable.h"
#include "GameplayAbilitySpec.h"
struct FGameplayAbilitySpecHandleAndPredictionKey
@@ -16,4 +17,19 @@ struct FGameplayAbilitySpecHandleAndPredictionKey
TArray<FKeyDataPair> InUseData;
TArray<TSharedRef<FAbilityReplicatedDataCache>> FreeData;
}; */
}; */
struct FScalableFloat // todo check where this actually goes
{
float& GetValue()
{
static auto FloatOffset = FindOffsetStruct("/Script/GameplayAbilities.ScalableFloat", "Value");
return *(float*)(__int64(this) + FloatOffset);
}
FCurveTableRowHandle& GetCurve()
{
static auto CurveOffset = FindOffsetStruct("/Script/GameplayAbilities.ScalableFloat", "Curve");
return *(FCurveTableRowHandle*)(__int64(this) + CurveOffset);
}
};