rocketleaguesdk 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ObjectDump.txt +2245 -20064
- package/examples/basic.ts +34 -16
- package/offsets/AkAudio.ts +347 -12
- package/offsets/Core.ts +54 -48
- package/offsets/Engine.ts +277 -167
- package/offsets/GFxUI.ts +68 -8
- package/offsets/IpDrv.ts +238 -24
- package/offsets/OnlineSubsystemEOS.ts +175 -12
- package/offsets/ProjectX.ts +1822 -335
- package/offsets/TAGame.ts +3706 -880
- package/offsets/WinDrv.ts +61 -1
- package/offsets/XAudio2.ts +54 -1
- package/package.json +1 -1
|
@@ -6,8 +6,25 @@
|
|
|
6
6
|
* Import these to read/write memory at the correct locations.
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
/**
|
|
10
|
+
* Core.Object Offsets
|
|
11
|
+
* Size: 0x0060
|
|
12
|
+
*/
|
|
13
|
+
export const Object_ = {
|
|
14
|
+
VfTableObject: 0x0000, // 0x0000 (0x0008) [FPointer]
|
|
15
|
+
HashNext: 0x0008, // 0x0008 (0x0008) [FPointer]
|
|
16
|
+
ObjectFlags: 0x0010, // 0x0010 (0x0008) [uint64]
|
|
17
|
+
HashOuterNext: 0x0018, // 0x0018 (0x0008) [FPointer]
|
|
18
|
+
StateFrame: 0x0020, // 0x0020 (0x0008) [FPointer]
|
|
19
|
+
Linker: 0x0028, // 0x0028 (0x0008) [UObject*]
|
|
20
|
+
LinkerIndex: 0x0030, // 0x0030 (0x0008) [FPointer]
|
|
21
|
+
ObjectInternalInteger: 0x0038, // 0x0038 (0x0004) [int32]
|
|
22
|
+
NetIndex: 0x003C, // 0x003C (0x0004) [int32]
|
|
23
|
+
Outer: 0x0040, // 0x0040 (0x0008) [UObject*]
|
|
24
|
+
Name: 0x0048, // 0x0048 (0x0008) [FName]
|
|
25
|
+
Class: 0x0050, // 0x0050 (0x0008) [UClass*]
|
|
26
|
+
ObjectArchetype: 0x0058, // 0x0058 (0x0008) [UObject*]
|
|
27
|
+
} as const;
|
|
11
28
|
|
|
12
29
|
/**
|
|
13
30
|
* OnlineSubsystemEOS.AudioDevicesChangedEvent Offsets
|
|
@@ -15,7 +32,18 @@ import { OnlineAuthInterfaceImpl, OnlineFriendsInterfaceImpl, OnlineGameInterfac
|
|
|
15
32
|
* Extends: Object
|
|
16
33
|
*/
|
|
17
34
|
export const AudioDevicesChangedEvent = {
|
|
18
|
-
...
|
|
35
|
+
...Object_,
|
|
36
|
+
} as const;
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Core.ErrorList Offsets
|
|
40
|
+
* Size: 0x0080
|
|
41
|
+
* Extends: Object
|
|
42
|
+
*/
|
|
43
|
+
export const ErrorList = {
|
|
44
|
+
LocalizationPackage: 0x0060, // 0x0060 (0x0010) [FString]
|
|
45
|
+
LocalizationSection: 0x0070, // 0x0070 (0x0010) [FString]
|
|
46
|
+
...Object_,
|
|
19
47
|
} as const;
|
|
20
48
|
|
|
21
49
|
/**
|
|
@@ -42,6 +70,50 @@ export const EOSErrors = {
|
|
|
42
70
|
...ErrorList,
|
|
43
71
|
} as const;
|
|
44
72
|
|
|
73
|
+
/**
|
|
74
|
+
* IpDrv.OnlineAuthInterfaceImpl Offsets
|
|
75
|
+
* Size: 0x03C8
|
|
76
|
+
* Extends: Object
|
|
77
|
+
*/
|
|
78
|
+
export const OnlineAuthInterfaceImpl = {
|
|
79
|
+
VfTable_IOnlineAuthInterface: 0x0060, // 0x0060 (0x0008) [FPointer]
|
|
80
|
+
AuthCodeRequests: 0x0068, // 0x0068 (0x0010) [TArray<FAuthCodeRequest>]
|
|
81
|
+
NextAuthCodeID: 0x0078, // 0x0078 (0x0004) [int32]
|
|
82
|
+
OwningSubsystem: 0x0080, // 0x0080 (0x0008) [UOnlineSubsystemCommonImpl*]
|
|
83
|
+
bAuthReady: 0x0088, // 0x0088 (0x0004) [bool : 0x1]
|
|
84
|
+
ClientAuthSessions: 0x0090, // 0x0090 (0x0038) [FSparseArray_Mirror]
|
|
85
|
+
ServerAuthSessions: 0x00C8, // 0x00C8 (0x0038) [FSparseArray_Mirror]
|
|
86
|
+
PeerAuthSessions: 0x0100, // 0x0100 (0x0038) [FSparseArray_Mirror]
|
|
87
|
+
LocalClientAuthSessions: 0x0138, // 0x0138 (0x0038) [FSparseArray_Mirror]
|
|
88
|
+
LocalServerAuthSessions: 0x0170, // 0x0170 (0x0038) [FSparseArray_Mirror]
|
|
89
|
+
LocalPeerAuthSessions: 0x01A8, // 0x01A8 (0x0038) [FSparseArray_Mirror]
|
|
90
|
+
AuthReadyDelegates: 0x01E0, // 0x01E0 (0x0010) [TArray<FScriptDelegate>]
|
|
91
|
+
ClientAuthRequestDelegates: 0x01F0, // 0x01F0 (0x0010) [TArray<FScriptDelegate>]
|
|
92
|
+
ServerAuthRequestDelegates: 0x0200, // 0x0200 (0x0010) [TArray<FScriptDelegate>]
|
|
93
|
+
ClientAuthResponseDelegates: 0x0210, // 0x0210 (0x0010) [TArray<FScriptDelegate>]
|
|
94
|
+
ServerAuthResponseDelegates: 0x0220, // 0x0220 (0x0010) [TArray<FScriptDelegate>]
|
|
95
|
+
ClientAuthCompleteDelegates: 0x0230, // 0x0230 (0x0010) [TArray<FScriptDelegate>]
|
|
96
|
+
ServerAuthCompleteDelegates: 0x0240, // 0x0240 (0x0010) [TArray<FScriptDelegate>]
|
|
97
|
+
ClientAuthEndSessionRequestDelegates: 0x0250, // 0x0250 (0x0010) [TArray<FScriptDelegate>]
|
|
98
|
+
ServerAuthRetryRequestDelegates: 0x0260, // 0x0260 (0x0010) [TArray<FScriptDelegate>]
|
|
99
|
+
ClientConnectionCloseDelegates: 0x0270, // 0x0270 (0x0010) [TArray<FScriptDelegate>]
|
|
100
|
+
ServerConnectionCloseDelegates: 0x0280, // 0x0280 (0x0010) [TArray<FScriptDelegate>]
|
|
101
|
+
__OnAuthReady__Delegate: 0x0290, // 0x0290 (0x0018) [FScriptDelegate]
|
|
102
|
+
__OnClientAuthRequest__Delegate: 0x02A8, // 0x02A8 (0x0018) [FScriptDelegate]
|
|
103
|
+
__OnServerAuthRequest__Delegate: 0x02C0, // 0x02C0 (0x0018) [FScriptDelegate]
|
|
104
|
+
__OnClientAuthResponse__Delegate: 0x02D8, // 0x02D8 (0x0018) [FScriptDelegate]
|
|
105
|
+
__OnServerAuthResponse__Delegate: 0x02F0, // 0x02F0 (0x0018) [FScriptDelegate]
|
|
106
|
+
__OnClientAuthComplete__Delegate: 0x0308, // 0x0308 (0x0018) [FScriptDelegate]
|
|
107
|
+
__OnServerAuthComplete__Delegate: 0x0320, // 0x0320 (0x0018) [FScriptDelegate]
|
|
108
|
+
__OnClientAuthEndSessionRequest__Delegate: 0x0338, // 0x0338 (0x0018) [FScriptDelegate]
|
|
109
|
+
__OnServerAuthRetryRequest__Delegate: 0x0350, // 0x0350 (0x0018) [FScriptDelegate]
|
|
110
|
+
__OnClientConnectionClose__Delegate: 0x0368, // 0x0368 (0x0018) [FScriptDelegate]
|
|
111
|
+
__OnServerConnectionClose__Delegate: 0x0380, // 0x0380 (0x0018) [FScriptDelegate]
|
|
112
|
+
__OnReceivedAuthCode__Delegate: 0x0398, // 0x0398 (0x0018) [FScriptDelegate]
|
|
113
|
+
__OnAccountAuthorization__Delegate: 0x03B0, // 0x03B0 (0x0018) [FScriptDelegate]
|
|
114
|
+
...Object_,
|
|
115
|
+
} as const;
|
|
116
|
+
|
|
45
117
|
/**
|
|
46
118
|
* OnlineSubsystemEOS.OnlineAuthInterfaceEOS Offsets
|
|
47
119
|
* Size: 0x03D0
|
|
@@ -52,6 +124,17 @@ export const OnlineAuthInterfaceEOS = {
|
|
|
52
124
|
...OnlineAuthInterfaceImpl,
|
|
53
125
|
} as const;
|
|
54
126
|
|
|
127
|
+
/**
|
|
128
|
+
* IpDrv.OnlineFriendsInterfaceImpl Offsets
|
|
129
|
+
* Size: 0x0080
|
|
130
|
+
* Extends: Object
|
|
131
|
+
*/
|
|
132
|
+
export const OnlineFriendsInterfaceImpl = {
|
|
133
|
+
VfTable_IOnlineFriendsInterface: 0x0060, // 0x0060 (0x0008) [FPointer]
|
|
134
|
+
__OnReceivedLinkedAccount__Delegate: 0x0068, // 0x0068 (0x0018) [FScriptDelegate]
|
|
135
|
+
...Object_,
|
|
136
|
+
} as const;
|
|
137
|
+
|
|
55
138
|
/**
|
|
56
139
|
* OnlineSubsystemEOS.OnlineFriendsInterfaceEOS Offsets
|
|
57
140
|
* Size: 0x0088
|
|
@@ -76,7 +159,58 @@ export const OnlineGameClipsInterfaceEOS = {
|
|
|
76
159
|
__EventMaskStatusChanged__Delegate: 0x00C8, // 0x00C8 (0x0018) [FScriptDelegate]
|
|
77
160
|
__EventGeneralErrorOccurred__Delegate: 0x00E0, // 0x00E0 (0x0018) [FScriptDelegate]
|
|
78
161
|
__EventClipErrorOccurred__Delegate: 0x00F8, // 0x00F8 (0x0018) [FScriptDelegate]
|
|
79
|
-
...
|
|
162
|
+
...Object_,
|
|
163
|
+
} as const;
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* IpDrv.OnlineGameInterfaceImpl Offsets
|
|
167
|
+
* Size: 0x0318
|
|
168
|
+
* Extends: Object
|
|
169
|
+
*/
|
|
170
|
+
export const OnlineGameInterfaceImpl = {
|
|
171
|
+
OwningSubsystem: 0x0060, // 0x0060 (0x0008) [UOnlineSubsystemCommonImpl*]
|
|
172
|
+
GameSettings: 0x0068, // 0x0068 (0x0008) [UOnlineGameSettings*]
|
|
173
|
+
GameSearch: 0x0070, // 0x0070 (0x0008) [UOnlineGameSearch*]
|
|
174
|
+
CreateOnlineGameCompleteDelegates: 0x0078, // 0x0078 (0x0010) [TArray<FScriptDelegate>]
|
|
175
|
+
UpdateOnlineGameCompleteDelegates: 0x0088, // 0x0088 (0x0010) [TArray<FScriptDelegate>]
|
|
176
|
+
DestroyOnlineGameCompleteDelegates: 0x0098, // 0x0098 (0x0010) [TArray<FScriptDelegate>]
|
|
177
|
+
JoinOnlineGameCompleteDelegates: 0x00A8, // 0x00A8 (0x0010) [TArray<FScriptDelegate>]
|
|
178
|
+
MigrateOnlineGameCompleteDelegates: 0x00B8, // 0x00B8 (0x0010) [TArray<FScriptDelegate>]
|
|
179
|
+
JoinMigratedOnlineGameCompleteDelegates: 0x00C8, // 0x00C8 (0x0010) [TArray<FScriptDelegate>]
|
|
180
|
+
RecalculateSkillRatingCompleteDelegates: 0x00D8, // 0x00D8 (0x0010) [TArray<FScriptDelegate>]
|
|
181
|
+
StartOnlineGameCompleteDelegates: 0x00E8, // 0x00E8 (0x0010) [TArray<FScriptDelegate>]
|
|
182
|
+
EndOnlineGameCompleteDelegates: 0x00F8, // 0x00F8 (0x0010) [TArray<FScriptDelegate>]
|
|
183
|
+
FindOnlineGamesCompleteDelegates: 0x0108, // 0x0108 (0x0010) [TArray<FScriptDelegate>]
|
|
184
|
+
CancelFindOnlineGamesCompleteDelegates: 0x0118, // 0x0118 (0x0010) [TArray<FScriptDelegate>]
|
|
185
|
+
LanBeaconState: 0x0128, // 0x0128 (0x0001) [ELanBeaconState]
|
|
186
|
+
LanNonce: 0x0129, // 0x0129 (0x0008) [uint8]
|
|
187
|
+
LanAnnouncePort: 0x0134, // 0x0134 (0x0004) [int32]
|
|
188
|
+
LanGameUniqueId: 0x0138, // 0x0138 (0x0004) [int32]
|
|
189
|
+
LanPacketPlatformMask: 0x013C, // 0x013C (0x0004) [int32]
|
|
190
|
+
LanQueryTimeLeft: 0x0140, // 0x0140 (0x0004) [float]
|
|
191
|
+
LanQueryTimeout: 0x0144, // 0x0144 (0x0004) [float]
|
|
192
|
+
LanBeacon: 0x0148, // 0x0148 (0x0008) [FPointer]
|
|
193
|
+
SessionInfo: 0x0150, // 0x0150 (0x0008) [FPointer]
|
|
194
|
+
GameInviteAcceptedDelegates: 0x0158, // 0x0158 (0x0010) [TArray<FScriptDelegate>]
|
|
195
|
+
__OnFindOnlineGamesComplete__Delegate: 0x0168, // 0x0168 (0x0018) [FScriptDelegate]
|
|
196
|
+
__OnCreateOnlineGameComplete__Delegate: 0x0180, // 0x0180 (0x0018) [FScriptDelegate]
|
|
197
|
+
__OnUpdateOnlineGameComplete__Delegate: 0x0198, // 0x0198 (0x0018) [FScriptDelegate]
|
|
198
|
+
__OnDestroyOnlineGameComplete__Delegate: 0x01B0, // 0x01B0 (0x0018) [FScriptDelegate]
|
|
199
|
+
__OnCancelFindOnlineGamesComplete__Delegate: 0x01C8, // 0x01C8 (0x0018) [FScriptDelegate]
|
|
200
|
+
__OnJoinOnlineGameComplete__Delegate: 0x01E0, // 0x01E0 (0x0018) [FScriptDelegate]
|
|
201
|
+
__OnRegisterPlayerComplete__Delegate: 0x01F8, // 0x01F8 (0x0018) [FScriptDelegate]
|
|
202
|
+
__OnUnregisterPlayerComplete__Delegate: 0x0210, // 0x0210 (0x0018) [FScriptDelegate]
|
|
203
|
+
__OnStartOnlineGameComplete__Delegate: 0x0228, // 0x0228 (0x0018) [FScriptDelegate]
|
|
204
|
+
__OnEndOnlineGameComplete__Delegate: 0x0240, // 0x0240 (0x0018) [FScriptDelegate]
|
|
205
|
+
__OnArbitrationRegistrationComplete__Delegate: 0x0258, // 0x0258 (0x0018) [FScriptDelegate]
|
|
206
|
+
__OnGameInviteAccepted__Delegate: 0x0270, // 0x0270 (0x0018) [FScriptDelegate]
|
|
207
|
+
__OnRecalculateSkillRatingComplete__Delegate: 0x0288, // 0x0288 (0x0018) [FScriptDelegate]
|
|
208
|
+
__OnMigrateOnlineGameComplete__Delegate: 0x02A0, // 0x02A0 (0x0018) [FScriptDelegate]
|
|
209
|
+
__OnJoinMigratedOnlineGameComplete__Delegate: 0x02B8, // 0x02B8 (0x0018) [FScriptDelegate]
|
|
210
|
+
__OnQosStatusChanged__Delegate: 0x02D0, // 0x02D0 (0x0018) [FScriptDelegate]
|
|
211
|
+
__EventReportMatchmakingInfo__Delegate: 0x02E8, // 0x02E8 (0x0018) [FScriptDelegate]
|
|
212
|
+
__OnGamePlayersChanged__Delegate: 0x0300, // 0x0300 (0x0018) [FScriptDelegate]
|
|
213
|
+
...Object_,
|
|
80
214
|
} as const;
|
|
81
215
|
|
|
82
216
|
/**
|
|
@@ -92,6 +226,20 @@ export const OnlineGameInterfaceEOS = {
|
|
|
92
226
|
...OnlineGameInterfaceImpl,
|
|
93
227
|
} as const;
|
|
94
228
|
|
|
229
|
+
/**
|
|
230
|
+
* IpDrv.OnlinePersistentAuthInterfaceImpl Offsets
|
|
231
|
+
* Size: 0x00B8
|
|
232
|
+
* Extends: Object
|
|
233
|
+
*/
|
|
234
|
+
export const OnlinePersistentAuthInterfaceImpl = {
|
|
235
|
+
VfTable_IOnlinePersistentAuthInterface: 0x0060, // 0x0060 (0x0008) [FPointer]
|
|
236
|
+
RequestPinGrantCodeDelegates: 0x0068, // 0x0068 (0x0010) [TArray<FScriptDelegate>]
|
|
237
|
+
UnderageUserDetectedDelegates: 0x0078, // 0x0078 (0x0010) [TArray<FScriptDelegate>]
|
|
238
|
+
__OnReceievedPinGrantCode__Delegate: 0x0088, // 0x0088 (0x0018) [FScriptDelegate]
|
|
239
|
+
__OnUnderageUserDetected__Delegate: 0x00A0, // 0x00A0 (0x0018) [FScriptDelegate]
|
|
240
|
+
...Object_,
|
|
241
|
+
} as const;
|
|
242
|
+
|
|
95
243
|
/**
|
|
96
244
|
* OnlineSubsystemEOS.OnlinePersistentAuthInterfaceEOS Offsets
|
|
97
245
|
* Size: 0x00C0
|
|
@@ -193,7 +341,7 @@ export const OnlinePlayerInterfaceEOS = {
|
|
|
193
341
|
__OnSanitizeStringComplete__Delegate: 0x0668, // 0x0668 (0x0018) [FScriptDelegate]
|
|
194
342
|
__EpicIDToPlatformIDCallback__Delegate: 0x0680, // 0x0680 (0x0018) [FScriptDelegate]
|
|
195
343
|
__OnFriendInviteAccepted__Delegate: 0x0698, // 0x0698 (0x0018) [FScriptDelegate]
|
|
196
|
-
...
|
|
344
|
+
...Object_,
|
|
197
345
|
} as const;
|
|
198
346
|
|
|
199
347
|
/**
|
|
@@ -208,7 +356,23 @@ export const OnlineStatsInterfaceEOS = {
|
|
|
208
356
|
__OnReadOnlineStatsComplete__Delegate: 0x0080, // 0x0080 (0x0018) [FScriptDelegate]
|
|
209
357
|
__OnFlushOnlineStatsComplete__Delegate: 0x0098, // 0x0098 (0x0018) [FScriptDelegate]
|
|
210
358
|
__OnRegisterHostStatGuidComplete__Delegate: 0x00B0, // 0x00B0 (0x0018) [FScriptDelegate]
|
|
211
|
-
...
|
|
359
|
+
...Object_,
|
|
360
|
+
} as const;
|
|
361
|
+
|
|
362
|
+
/**
|
|
363
|
+
* IpDrv.OnlineSubsystemCommonImpl Offsets
|
|
364
|
+
* Size: 0x03C0
|
|
365
|
+
* Extends: OnlineSubsystem
|
|
366
|
+
*/
|
|
367
|
+
export const OnlineSubsystemCommonImpl = {
|
|
368
|
+
VoiceEngine: 0x0378, // 0x0378 (0x0008) [FPointer]
|
|
369
|
+
MaxLocalTalkers: 0x0380, // 0x0380 (0x0004) [int32]
|
|
370
|
+
MaxRemoteTalkers: 0x0384, // 0x0384 (0x0004) [int32]
|
|
371
|
+
bIsUsingSpeechRecognition: 0x0388, // 0x0388 (0x0004) [bool : 0x1]
|
|
372
|
+
GameInterfaceImpl: 0x0390, // 0x0390 (0x0008) [UOnlineGameInterfaceImpl*]
|
|
373
|
+
AuthInterfaceImpl: 0x0398, // 0x0398 (0x0008) [UOnlineAuthInterfaceImpl*]
|
|
374
|
+
PurchaseInterfaceImpl: 0x03A0, // 0x03A0 (0x0008) [UOnlinePurchaseInterfaceImpl*]
|
|
375
|
+
__OnSanitizeStringComplete__Delegate: 0x03A8, // 0x03A8 (0x0018) [FScriptDelegate]
|
|
212
376
|
} as const;
|
|
213
377
|
|
|
214
378
|
/**
|
|
@@ -292,7 +456,7 @@ export const OnlineUserCloudFileInterfaceEOS = {
|
|
|
292
456
|
__OnReadUserFileComplete__Delegate: 0x00D0, // 0x00D0 (0x0018) [FScriptDelegate]
|
|
293
457
|
__OnWriteUserFileComplete__Delegate: 0x00E8, // 0x00E8 (0x0018) [FScriptDelegate]
|
|
294
458
|
__OnDeleteUserFileComplete__Delegate: 0x0100, // 0x0100 (0x0018) [FScriptDelegate]
|
|
295
|
-
...
|
|
459
|
+
...Object_,
|
|
296
460
|
} as const;
|
|
297
461
|
|
|
298
462
|
/**
|
|
@@ -322,7 +486,7 @@ export const OnlineVoiceInterfaceEOS = {
|
|
|
322
486
|
__EventVoiceRecordingStatusChanged__Delegate: 0x0250, // 0x0250 (0x0018) [FScriptDelegate]
|
|
323
487
|
__OnPlayerTalkingStateChange__Delegate: 0x0268, // 0x0268 (0x0018) [FScriptDelegate]
|
|
324
488
|
__OnRecognitionComplete__Delegate: 0x0280, // 0x0280 (0x0018) [FScriptDelegate]
|
|
325
|
-
...
|
|
489
|
+
...Object_,
|
|
326
490
|
} as const;
|
|
327
491
|
|
|
328
492
|
/**
|
|
@@ -332,7 +496,7 @@ export const OnlineVoiceInterfaceEOS = {
|
|
|
332
496
|
*/
|
|
333
497
|
export const VideoRecorderEOS = {
|
|
334
498
|
VfTable_FTickableObject: 0x0060, // 0x0060 (0x0008) [FPointer]
|
|
335
|
-
...
|
|
499
|
+
...Object_,
|
|
336
500
|
} as const;
|
|
337
501
|
|
|
338
502
|
/**
|
|
@@ -342,7 +506,7 @@ export const VideoRecorderEOS = {
|
|
|
342
506
|
*/
|
|
343
507
|
export const __OnlinePlayerInterfaceEOS__LinkedAccount_0x1 = {
|
|
344
508
|
LocalUserNum: 0x0060, // 0x0060 (0x0004) [int32]
|
|
345
|
-
...
|
|
509
|
+
...Object_,
|
|
346
510
|
} as const;
|
|
347
511
|
|
|
348
512
|
/**
|
|
@@ -353,10 +517,9 @@ export const __OnlinePlayerInterfaceEOS__LinkedAccount_0x1 = {
|
|
|
353
517
|
export const __OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1 = {
|
|
354
518
|
LocalUserNum: 0x0060, // 0x0060 (0x0004) [int32]
|
|
355
519
|
Callback: 0x0068, // 0x0068 (0x0018) [FScriptDelegate]
|
|
356
|
-
...
|
|
520
|
+
...Object_,
|
|
357
521
|
} as const;
|
|
358
522
|
|
|
359
|
-
|
|
360
523
|
/**
|
|
361
524
|
* ScriptStruct OnlineSubsystemEOS.OnlinePlayerInterfaceEOS.LoginDelegates Offsets
|
|
362
525
|
* Size: 0x0010
|