@rlsdk/steam 1.0.0 → 1.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/classes/Core.ts +57 -34
- package/classes/Engine.ts +1 -0
- package/classes/OnlineSubsystemEOS.ts +119 -49
- package/classes/ProjectX.ts +150 -29
- package/classes/TAGame.ts +1341 -835
- package/enums/Core.ts +22 -0
- package/enums/Engine.ts +2 -1
- package/enums/TAGame.ts +39 -3
- package/offsets/Core.ts +45 -34
- package/offsets/OnlineSubsystemEOS.ts +86 -48
- package/offsets/ProjectX.ts +154 -55
- package/offsets/TAGame.ts +1368 -865
- package/offsets/globals.ts +2 -2
- package/package.json +1 -1
- package/parameters/Core.ts +82 -0
- package/parameters/Engine.ts +8 -0
- package/parameters/OnlineSubsystemEOS.ts +170 -1
- package/parameters/ProjectX.ts +208 -9
- package/parameters/TAGame.ts +1563 -66
- package/structs/ProjectX.ts +23 -16
- package/structs/TAGame.ts +210 -4
package/classes/Core.ts
CHANGED
|
@@ -412,6 +412,20 @@ export type UObject = {
|
|
|
412
412
|
// static Rand(Max: number): number
|
|
413
413
|
// static FromHexColor(Hex: string): FColor
|
|
414
414
|
// static FromHex(Hex: string): number
|
|
415
|
+
// static SQWordMin(): void
|
|
416
|
+
// static SQWordMax(): void
|
|
417
|
+
// static SubtractEqual_SQWordSQWord(): void
|
|
418
|
+
// static AddEqual_SQWordSQWord(): void
|
|
419
|
+
// static NotEqual_SQWordSQWord(): boolean
|
|
420
|
+
// static EqualEqual_SQWordSQWord(): boolean
|
|
421
|
+
// static GreaterEqual_SQWordSQWord(): boolean
|
|
422
|
+
// static LessEqual_SQWordSQWord(): boolean
|
|
423
|
+
// static Greater_SQWordSQWord(): boolean
|
|
424
|
+
// static Less_SQWordSQWord(): boolean
|
|
425
|
+
// static Subtract_SQWordSQWord(): void
|
|
426
|
+
// static Add_SQWordSQWord(): void
|
|
427
|
+
// static Divide_SQWordSQWord(): void
|
|
428
|
+
// static Multiply_SQWordSQWord(): void
|
|
415
429
|
// static QMin(A: bigint, B: bigint): bigint
|
|
416
430
|
// static QMax(A: bigint, B: bigint): bigint
|
|
417
431
|
// static QSubtractNoUnderflow(A: bigint, B: bigint): bigint
|
|
@@ -1026,40 +1040,42 @@ export type UFeatureSystem = UObject & {
|
|
|
1026
1040
|
DynamicLogos: boolean; // 0x0074 (0x0004) [bool : 0x4000000]
|
|
1027
1041
|
XETagging: boolean; // 0x0074 (0x0004) [bool : 0x8000000]
|
|
1028
1042
|
PlayMenuV4: boolean; // 0x0074 (0x0004) [bool : 0x10000000]
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
OverrideBoostSound: boolean; // 0x007c (0x0004) [bool :
|
|
1062
|
-
SettingsExport: boolean; // 0x007c (0x0004) [bool :
|
|
1043
|
+
QuickChatTimeStamp: boolean; // 0x0074 (0x0004) [bool : 0x20000000]
|
|
1044
|
+
SoccarPong: boolean; // 0x0074 (0x0004) [bool : 0x40000000]
|
|
1045
|
+
OnlineFreeplay: boolean; // 0x0074 (0x0004) [bool : 0x80000000]
|
|
1046
|
+
MatchmakingSubRegion: boolean; // 0x0078 (0x0004) [bool : 0x2]
|
|
1047
|
+
CrossbarSFX: boolean; // 0x0078 (0x0004) [bool : 0x4]
|
|
1048
|
+
RugbyIteration: boolean; // 0x0078 (0x0004) [bool : 0x8]
|
|
1049
|
+
ChallengesV2: boolean; // 0x0078 (0x0004) [bool : 0x20]
|
|
1050
|
+
PossessionExpanded: boolean; // 0x0078 (0x0004) [bool : 0x40]
|
|
1051
|
+
TargetFind: boolean; // 0x0078 (0x0004) [bool : 0x80]
|
|
1052
|
+
KeepUp: boolean; // 0x0078 (0x0004) [bool : 0x200]
|
|
1053
|
+
RocketPassUpgrades: boolean; // 0x0078 (0x0004) [bool : 0x800]
|
|
1054
|
+
PentathlonTournaments: boolean; // 0x0078 (0x0004) [bool : 0x1000]
|
|
1055
|
+
DemolishUpdates: boolean; // 0x0078 (0x0004) [bool : 0x2000]
|
|
1056
|
+
ViralItem: boolean; // 0x0078 (0x0004) [bool : 0x4000]
|
|
1057
|
+
ThankYouMessage: boolean; // 0x0078 (0x0004) [bool : 0x8000]
|
|
1058
|
+
AttackerDemoFX: boolean; // 0x0078 (0x0004) [bool : 0x10000]
|
|
1059
|
+
NewDriverChallengesV2: boolean; // 0x0078 (0x0004) [bool : 0x20000]
|
|
1060
|
+
TextModeration: boolean; // 0x0078 (0x0004) [bool : 0x100000]
|
|
1061
|
+
FilterToggle: boolean; // 0x0078 (0x0004) [bool : 0x200000]
|
|
1062
|
+
DdosPrevention: boolean; // 0x0078 (0x0004) [bool : 0x400000]
|
|
1063
|
+
OunceEnhancements: boolean; // 0x0078 (0x0004) [bool : 0x800000]
|
|
1064
|
+
FastFreeplay: boolean; // 0x0078 (0x0004) [bool : 0x1000000]
|
|
1065
|
+
MatchAdminMutator: boolean; // 0x0078 (0x0004) [bool : 0x2000000]
|
|
1066
|
+
Thistle: boolean; // 0x0078 (0x0004) [bool : 0x4000000]
|
|
1067
|
+
DemoFXMutator: boolean; // 0x0078 (0x0004) [bool : 0x8000000]
|
|
1068
|
+
OffProdHandling: boolean; // 0x0078 (0x0004) [bool : 0x10000000]
|
|
1069
|
+
CustomTrainingSettings: boolean; // 0x0078 (0x0004) [bool : 0x20000000]
|
|
1070
|
+
FlipResetIndicator: boolean; // 0x0078 (0x0004) [bool : 0x80000000]
|
|
1071
|
+
NewsOverhaul: boolean; // 0x007c (0x0004) [bool : 0x1]
|
|
1072
|
+
QueueMenuChanges: boolean; // 0x007c (0x0004) [bool : 0x2]
|
|
1073
|
+
VisibleMMR: boolean; // 0x007c (0x0004) [bool : 0x4]
|
|
1074
|
+
EasyAntiCheat: boolean; // 0x007c (0x0004) [bool : 0x8]
|
|
1075
|
+
OverrideBoostSound: boolean; // 0x007c (0x0004) [bool : 0x10]
|
|
1076
|
+
SettingsExport: boolean; // 0x007c (0x0004) [bool : 0x20]
|
|
1077
|
+
FreeplayTeamColors: boolean; // 0x007c (0x0004) [bool : 0x400]
|
|
1078
|
+
StatsAPI: boolean; // 0x007c (0x0004) [bool : 0x1000]
|
|
1063
1079
|
};
|
|
1064
1080
|
|
|
1065
1081
|
/**
|
|
@@ -1340,6 +1356,13 @@ export type URotatorConversions = UObject & {};
|
|
|
1340
1356
|
*/
|
|
1341
1357
|
export type UScriptStruct = UStruct & {};
|
|
1342
1358
|
|
|
1359
|
+
/**
|
|
1360
|
+
* Class Core.SQWordProperty
|
|
1361
|
+
* Size: 0x00C8
|
|
1362
|
+
* Extends: UProperty
|
|
1363
|
+
*/
|
|
1364
|
+
export type USQWordProperty = UProperty & {};
|
|
1365
|
+
|
|
1343
1366
|
/**
|
|
1344
1367
|
* Class Core.StringMap
|
|
1345
1368
|
* Size: 0x00D8
|
package/classes/Engine.ts
CHANGED
|
@@ -3354,6 +3354,7 @@ export type UPrimitiveComponent = UActorComponent & {
|
|
|
3354
3354
|
};
|
|
3355
3355
|
|
|
3356
3356
|
// PrimitiveComponent Functions
|
|
3357
|
+
// SetHighContrastRenderingID(InRenderingID: EHighContrastRenderingID): void
|
|
3357
3358
|
// SetCastShadow(bNewCastShadow: boolean, bNewCastDynamicShadow: boolean): void
|
|
3358
3359
|
// ClosestPointOnComponentToComponent(OtherComponent: UPrimitiveComponent, PointOnComponentA: FVector, PointOnComponentB: FVector): GJKResult
|
|
3359
3360
|
// ClosestPointOnComponentToPoint(POI: FVector, Extent: FVector, OutPointA: FVector, OutPointB: FVector): GJKResult
|
|
@@ -4,7 +4,15 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
|
-
import type {
|
|
7
|
+
import type {
|
|
8
|
+
EClientActionCode,
|
|
9
|
+
EClientActionReason,
|
|
10
|
+
EClientAuthStatus,
|
|
11
|
+
EClientIntegrityViolation,
|
|
12
|
+
EInputAPI,
|
|
13
|
+
EVoiceResultCode,
|
|
14
|
+
OnlinePlatform,
|
|
15
|
+
} from '../enums/Core';
|
|
8
16
|
import type {
|
|
9
17
|
ECommunicationMethod,
|
|
10
18
|
EFeaturePrivilege,
|
|
@@ -124,6 +132,67 @@ export type UEOSErrors = UErrorList & {
|
|
|
124
132
|
GameClipsUploadLimitReached: UErrorType; // 0x00f0 (0x0008) [UErrorType*]
|
|
125
133
|
};
|
|
126
134
|
|
|
135
|
+
/**
|
|
136
|
+
* Class OnlineSubsystemEOS.OnlineAntiCheatInterfaceEOS
|
|
137
|
+
* Size: 0x0088
|
|
138
|
+
* Extends: UObject
|
|
139
|
+
*/
|
|
140
|
+
export type UOnlineAntiCheatInterfaceEOS = UObject & {
|
|
141
|
+
PlatformHandle: FPointer; // 0x0060 (0x0008) [FPointer]
|
|
142
|
+
PlayerInterfaceEOS: UOnlinePlayerInterfaceEOS; // 0x0068 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
143
|
+
__EventMessageGenerated__Delegate: FScriptDelegate; // 0x0070 (0x0018) [FScriptDelegate]
|
|
144
|
+
};
|
|
145
|
+
|
|
146
|
+
// OnlineAntiCheatInterfaceEOS Functions
|
|
147
|
+
// ReceiveMessage(EncodedMessage: string, PlayerID: FUniqueNetId): boolean
|
|
148
|
+
// EndSession(): boolean
|
|
149
|
+
// BeginSession(RegisterTimeoutSeconds: number): boolean
|
|
150
|
+
// Init(): void
|
|
151
|
+
// EventMessageGenerated(EncodedMessage: string, PlayerID: FUniqueNetId): void
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* Class OnlineSubsystemEOS.OnlineAntiCheatClientInterfaceEOS
|
|
155
|
+
* Size: 0x00C8
|
|
156
|
+
* Extends: UOnlineAntiCheatInterfaceEOS
|
|
157
|
+
*/
|
|
158
|
+
export type UOnlineAntiCheatClientInterfaceEOS = UOnlineAntiCheatInterfaceEOS & {
|
|
159
|
+
ClientHandle: FPointer; // 0x0088 (0x0008) [FPointer]
|
|
160
|
+
ReportHandle: FPointer; // 0x0090 (0x0008) [FPointer]
|
|
161
|
+
__EventClientIntegrityViolation__Delegate: FScriptDelegate; // 0x0098 (0x0018) [FScriptDelegate]
|
|
162
|
+
__EventPlayerReportComplete__Delegate: FScriptDelegate; // 0x00b0 (0x0018) [FScriptDelegate]
|
|
163
|
+
};
|
|
164
|
+
|
|
165
|
+
// OnlineAntiCheatClientInterfaceEOS Functions
|
|
166
|
+
// ReportPlayer(ProductUserId: string): void
|
|
167
|
+
// ReceiveMessage(EncodedMessage: string, PlayerID: FUniqueNetId): boolean
|
|
168
|
+
// IsAntiCheatEnabled(): boolean
|
|
169
|
+
// EndSession(): boolean
|
|
170
|
+
// BeginSession(RegisterTimeoutSeconds: number): boolean
|
|
171
|
+
// Init(): void
|
|
172
|
+
// EventPlayerReportComplete(ProductUserId: string, bSuccess: boolean): void
|
|
173
|
+
// EventClientIntegrityViolation(Violation: EClientIntegrityViolation, Message: string): void
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* Class OnlineSubsystemEOS.OnlineAntiCheatServerInterfaceEOS
|
|
177
|
+
* Size: 0x00C0
|
|
178
|
+
* Extends: UOnlineAntiCheatInterfaceEOS
|
|
179
|
+
*/
|
|
180
|
+
export type UOnlineAntiCheatServerInterfaceEOS = UOnlineAntiCheatInterfaceEOS & {
|
|
181
|
+
ServerHandle: FPointer; // 0x0088 (0x0008) [FPointer]
|
|
182
|
+
__EventClientActionRequired__Delegate: FScriptDelegate; // 0x0090 (0x0018) [FScriptDelegate]
|
|
183
|
+
__EventClientAuthStatusChanged__Delegate: FScriptDelegate; // 0x00a8 (0x0018) [FScriptDelegate]
|
|
184
|
+
};
|
|
185
|
+
|
|
186
|
+
// OnlineAntiCheatServerInterfaceEOS Functions
|
|
187
|
+
// ReceiveMessage(EncodedMessage: string, PlayerID: FUniqueNetId): boolean
|
|
188
|
+
// UnregisterClient(PlayerID: FUniqueNetId): boolean
|
|
189
|
+
// RegisterClient(PlayerID: FUniqueNetId, ProductUserId: string, bProtected: boolean): boolean
|
|
190
|
+
// EndSession(): boolean
|
|
191
|
+
// BeginSession(RegisterTimeoutSeconds: number): boolean
|
|
192
|
+
// Init(): void
|
|
193
|
+
// EventClientAuthStatusChanged(PlayerID: FUniqueNetId, AuthStatus: EClientAuthStatus): void
|
|
194
|
+
// EventClientActionRequired(PlayerID: FUniqueNetId, ActionCode: EClientActionCode, ActionReason: EClientActionReason, Message: string): void
|
|
195
|
+
|
|
127
196
|
/**
|
|
128
197
|
* Class OnlineSubsystemEOS.OnlineAuthInterfaceEOS
|
|
129
198
|
* Size: 0x03D0
|
|
@@ -613,7 +682,7 @@ export type UOnlineStatsInterfaceEOS = UObject & {
|
|
|
613
682
|
|
|
614
683
|
/**
|
|
615
684
|
* Class OnlineSubsystemEOS.OnlineSubsystemEOS
|
|
616
|
-
* Size:
|
|
685
|
+
* Size: 0x0748
|
|
617
686
|
* Extends: UOnlineSubsystemCommonImpl
|
|
618
687
|
*/
|
|
619
688
|
export type UOnlineSubsystemEOS = UOnlineSubsystemCommonImpl & {
|
|
@@ -626,53 +695,54 @@ export type UOnlineSubsystemEOS = UOnlineSubsystemCommonImpl & {
|
|
|
626
695
|
UserCloudFileInterfaceEOS: UOnlineUserCloudFileInterfaceEOS; // 0x03f0 (0x0008) [UOnlineUserCloudFileInterfaceEOS*]
|
|
627
696
|
VoiceInterfaceEOS: UOnlineVoiceInterfaceEOS; // 0x03f8 (0x0008) [UOnlineVoiceInterfaceEOS*]
|
|
628
697
|
GameClipsInterfaceEOS: UOnlineGameClipsInterfaceEOS; // 0x0400 (0x0008) [UOnlineGameClipsInterfaceEOS*]
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
698
|
+
AntiCheatInterfaceEOS: UOnlineAntiCheatInterfaceEOS; // 0x0408 (0x0008) [UOnlineAntiCheatInterfaceEOS*]
|
|
699
|
+
SpeechRecognitionCompleteDelegates: FScriptDelegate[]; // 0x0410 (0x0010) [TArray<FScriptDelegate>]
|
|
700
|
+
AuthHandle: FPointer; // 0x0420 (0x0008) [FPointer]
|
|
701
|
+
FriendsHandle: FPointer; // 0x0428 (0x0008) [FPointer]
|
|
702
|
+
UserInfoHandle: FPointer; // 0x0430 (0x0008) [FPointer]
|
|
703
|
+
PresenceHandle: FPointer; // 0x0438 (0x0008) [FPointer]
|
|
704
|
+
ConnectHandle: FPointer; // 0x0440 (0x0008) [FPointer]
|
|
705
|
+
SessionsHandle: FPointer; // 0x0448 (0x0008) [FPointer]
|
|
706
|
+
PDSHandle: FPointer; // 0x0450 (0x0008) [FPointer]
|
|
707
|
+
StatsHandle: FPointer; // 0x0458 (0x0008) [FPointer]
|
|
708
|
+
AchievementsHandle: FPointer; // 0x0460 (0x0008) [FPointer]
|
|
709
|
+
EcomHandle: FPointer; // 0x0468 (0x0008) [FPointer]
|
|
710
|
+
UIHandle: FPointer; // 0x0470 (0x0008) [FPointer]
|
|
711
|
+
RTCHandle: FPointer; // 0x0478 (0x0008) [FPointer]
|
|
712
|
+
RTCAudioHandle: FPointer; // 0x0480 (0x0008) [FPointer]
|
|
713
|
+
RTCAdminHandle: FPointer; // 0x0488 (0x0008) [FPointer]
|
|
714
|
+
GameClipsHandle: FPointer; // 0x0490 (0x0008) [FPointer]
|
|
715
|
+
EULATrackingHandle: FPointer; // 0x0498 (0x0008) [FPointer]
|
|
716
|
+
bLastTickShouldRecordAudioVal: boolean; // 0x04a0 (0x0004) [bool : 0x1]
|
|
717
|
+
UnlockedDLC: FName[]; // 0x04a8 (0x0010) [TArray<FName>]
|
|
718
|
+
UnlockedDLCDelegates: FScriptDelegate[]; // 0x04b8 (0x0010) [TArray<FScriptDelegate>]
|
|
719
|
+
ExternalUIChangeDelegates: FScriptDelegate[]; // 0x04c8 (0x0010) [TArray<FScriptDelegate>]
|
|
720
|
+
__OnMicroTxnResponse__Delegate: FScriptDelegate; // 0x04d8 (0x0018) [FScriptDelegate]
|
|
721
|
+
__EventGetAppPriceInfoComplete__Delegate: FScriptDelegate; // 0x04f0 (0x0018) [FScriptDelegate]
|
|
722
|
+
__OnPlayerTalking__Delegate: FScriptDelegate; // 0x0508 (0x0018) [FScriptDelegate]
|
|
723
|
+
__OnRecognitionComplete__Delegate: FScriptDelegate; // 0x0520 (0x0018) [FScriptDelegate]
|
|
724
|
+
__OnReadOnlineStatsComplete__Delegate: FScriptDelegate; // 0x0538 (0x0018) [FScriptDelegate]
|
|
725
|
+
__OnRegisterHostStatGuidComplete__Delegate: FScriptDelegate; // 0x0550 (0x0018) [FScriptDelegate]
|
|
726
|
+
__OnFlushOnlineStatsComplete__Delegate: FScriptDelegate; // 0x0568 (0x0018) [FScriptDelegate]
|
|
727
|
+
__OnLinkStatusChange__Delegate: FScriptDelegate; // 0x0580 (0x0018) [FScriptDelegate]
|
|
728
|
+
__OnExternalUIChange__Delegate: FScriptDelegate; // 0x0598 (0x0018) [FScriptDelegate]
|
|
729
|
+
__OnControllerChange__Delegate: FScriptDelegate; // 0x05b0 (0x0018) [FScriptDelegate]
|
|
730
|
+
__OnConnectionStatusChange__Delegate: FScriptDelegate; // 0x05c8 (0x0018) [FScriptDelegate]
|
|
731
|
+
__OnStorageDeviceChange__Delegate: FScriptDelegate; // 0x05e0 (0x0018) [FScriptDelegate]
|
|
732
|
+
__OnCreateOnlineAccountCompleted__Delegate: FScriptDelegate; // 0x05f8 (0x0018) [FScriptDelegate]
|
|
733
|
+
__OnPlayerTalkingStateChange__Delegate: FScriptDelegate; // 0x0610 (0x0018) [FScriptDelegate]
|
|
734
|
+
__OnCloseKickPlayerDialog__Delegate: FScriptDelegate; // 0x0628 (0x0018) [FScriptDelegate]
|
|
735
|
+
__OnCommerceDialogClosed__Delegate: FScriptDelegate; // 0x0640 (0x0018) [FScriptDelegate]
|
|
736
|
+
__OnErrorDialogClosed__Delegate: FScriptDelegate; // 0x0658 (0x0018) [FScriptDelegate]
|
|
737
|
+
__OnUnlockedDLCChange__Delegate: FScriptDelegate; // 0x0670 (0x0018) [FScriptDelegate]
|
|
738
|
+
__OnStorePurchaseCompleteDelegate__Delegate: FScriptDelegate; // 0x0688 (0x0018) [FScriptDelegate]
|
|
739
|
+
__OnUserOrphaned__Delegate: FScriptDelegate; // 0x06a0 (0x0018) [FScriptDelegate]
|
|
740
|
+
__OnUserRestored__Delegate: FScriptDelegate; // 0x06b8 (0x0018) [FScriptDelegate]
|
|
741
|
+
__OnPlayerSigningOut__Delegate: FScriptDelegate; // 0x06d0 (0x0018) [FScriptDelegate]
|
|
742
|
+
__EventCryptoKeyCreated__Delegate: FScriptDelegate; // 0x06e8 (0x0018) [FScriptDelegate]
|
|
743
|
+
__EventTextMessageSigned__Delegate: FScriptDelegate; // 0x0700 (0x0018) [FScriptDelegate]
|
|
744
|
+
__EventTextMessageValidated__Delegate: FScriptDelegate; // 0x0718 (0x0018) [FScriptDelegate]
|
|
745
|
+
__OnCaptureAvailabilityChange__Delegate: FScriptDelegate; // 0x0730 (0x0018) [FScriptDelegate]
|
|
676
746
|
};
|
|
677
747
|
|
|
678
748
|
// OnlineSubsystemEOS Functions
|