forked from kp7742/UE4Dumper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOffsets64.h
69 lines (64 loc) · 2 KB
/
Offsets64.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#ifndef OFFSETS64_H
#define OFFSETS64_H
#include "Mem.h"
namespace Offsets {
kaddr GWorld = 0;
kaddr GNames = 0;
kaddr GUObjectArray = 0;
enum Offsets {
//Global
PointerSize = 0x8,
FUObjectItemSize = 0x18,
//---------SDK-----------
//Class: FNameEntry
FNameEntryToNameString = 0xC,
//Class: FUObjectArray
FUObjectArrayToTUObjectArray = 0x10,
//Class: TUObjectArray
TUObjectArrayToNumElements = 0xC,
TUObjectArrayToNumElementsNew = 0x14,
//Class: UObject
UObjectToInternalIndex = 0xC,
UObjectToClassPrivate = 0x10,
UObjectToFNameIndex = 0x18,
UObjectToOuterPrivate = 0x20,
//Class: UField
UFieldToNext = 0x28,
//Class: UStruct
UStructToSuperStruct = 0x30,
UStructToChildren = 0x38,
//Class: UFunction
UFunctionToFunctionFlags = 0x88,
UFunctionToFunc = 0xB0,
//Class: UProperty
UPropertyToElementSize = 0x34,
UPropertyToPropertyFlags = 0x38,
UPropertyToOffsetInternal = 0x44,
//Class: UBoolProperty
UBoolPropertyToFieldSize = 0x70,
UBoolPropertyToByteOffset = 0x71,
UBoolPropertyToByteMask = 0x72,
UBoolPropertyToFieldMask = 0x73,
//Class: UObjectProperty
UObjectPropertyToPropertyClass = 0x70,
//Class: UClassProperty
UClassPropertyToMetaClass = 0x78,
//Class: UInterfaceProperty
UInterfacePropertyToInterfaceClass = 0x78,
//Class: UArrayProperty
UArrayPropertyToInnerProperty = 0x70,
//Class: UMapProperty
UMapPropertyToKeyProp = 0x70,
UMapPropertyToValueProp = 0x78,
//Class: USetProperty
USetPropertyToElementProp = 0x70,
//Class: UStructProperty
UStructPropertyToStruct = 0x70,
//Class: UWorld
UWorldToPersistentLevel = 0x30,
//Class: ULevel
ULevelToAActors = 0xA0,
ULevelToAActorsCount = 0xA8,
};
}
#endif