mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 02:42:22 +01:00
124 files changed.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user