mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 19:02:21 +01:00
kismet function implemnetaitonm
This commit is contained in:
@@ -3,6 +3,8 @@
|
||||
#include "Object.h"
|
||||
#include "NameTypes.h"
|
||||
|
||||
#include "reboot.h"
|
||||
|
||||
class UCurveTable : public UObject
|
||||
{
|
||||
public:
|
||||
@@ -12,4 +14,28 @@ struct FCurveTableRowHandle
|
||||
{
|
||||
UCurveTable* CurveTable;
|
||||
FName RowName;
|
||||
};
|
||||
|
||||
struct FSimpleCurveKey
|
||||
{
|
||||
float Time; // 0x0000(0x0004) (Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
|
||||
float Value; // 0x0004(0x0004) (Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
|
||||
};
|
||||
|
||||
struct FIndexedCurve
|
||||
{
|
||||
|
||||
};
|
||||
|
||||
struct FRealCurve : public FIndexedCurve
|
||||
{
|
||||
};
|
||||
|
||||
struct FSimpleCurve : public FRealCurve
|
||||
{
|
||||
TArray<FSimpleCurveKey>& GetKeys()
|
||||
{
|
||||
static auto KeysOffset = FindOffsetStruct("/Script/Engine.SimpleCurve", "Keys");
|
||||
return *(TArray<FSimpleCurveKey>*)(__int64(this) + KeysOffset);
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user