@rlsdk/steam 1.0.1 → 1.0.3
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/README.md +1 -1
- package/classes/AkAudio.ts +2 -13
- package/classes/Core.ts +64 -59
- package/classes/Engine.ts +33 -75
- package/classes/GFxUI.ts +3 -31
- package/classes/IpDrv.ts +10 -20
- package/classes/OnlineSubsystemEOS.ts +60 -164
- package/classes/OnlineSubsystemSteamworks.ts +175 -183
- package/classes/ProjectX.ts +103 -69
- package/classes/TAGame.ts +3239 -2558
- package/classes/WinDrv.ts +1 -8
- package/constants/TAGame.ts +3 -1
- package/enums/Core.ts +54 -0
- package/enums/Engine.ts +2 -72
- package/enums/TAGame.ts +46 -4
- package/offsets/AkAudio.ts +1 -1
- package/offsets/Core.ts +64 -59
- package/offsets/Engine.ts +29 -51
- package/offsets/IpDrv.ts +38 -39
- package/offsets/OnlineSubsystemEOS.ts +94 -136
- package/offsets/OnlineSubsystemSteamworks.ts +212 -213
- package/offsets/ProjectX.ts +82 -46
- package/offsets/TAGame.ts +2977 -2390
- package/offsets/globals.ts +2 -2
- package/package.json +5 -4
- package/parameters/AkAudio.ts +2 -18
- package/parameters/Core.ts +2 -27
- package/parameters/Engine.ts +23 -239
- package/parameters/GFxUI.ts +1 -9
- package/parameters/IpDrv.ts +2 -19
- package/parameters/OnlineSubsystemEOS.ts +8 -231
- package/parameters/ProjectX.ts +335 -282
- package/parameters/TAGame.ts +4082 -2448
- package/structs/Core.ts +1 -7
- package/structs/Engine.ts +0 -12
- package/structs/OnlineSubsystemSteamworks.ts +2 -13
- package/structs/ProjectX.ts +3 -18
- package/structs/TAGame.ts +186 -104
|
@@ -4,25 +4,11 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
|
-
import type {
|
|
8
|
-
EClientActionCode,
|
|
9
|
-
EClientActionReason,
|
|
10
|
-
EClientAuthStatus,
|
|
11
|
-
EClientIntegrityViolation,
|
|
12
|
-
EInputAPI,
|
|
13
|
-
EVoiceResultCode,
|
|
14
|
-
OnlinePlatform,
|
|
15
|
-
} from '../enums/Core';
|
|
7
|
+
import type { EClientActionCode, EClientActionReason, EClientAuthStatus, EClientIntegrityViolation, EInputAPI, EVoiceResultCode, OnlinePlatform } from '../enums/Core';
|
|
16
8
|
import type {
|
|
17
9
|
ECommunicationMethod,
|
|
18
10
|
EFeaturePrivilege,
|
|
19
11
|
EFeaturePrivilegeLevel,
|
|
20
|
-
EGameClipsAvailability,
|
|
21
|
-
EGameClipsClipStatus,
|
|
22
|
-
EGameClipsConnection,
|
|
23
|
-
EGameClipsConnectionStatus,
|
|
24
|
-
EGameClipsMaskStatus,
|
|
25
|
-
EGameClipsRecording,
|
|
26
12
|
ELoginStatus,
|
|
27
13
|
ENATType,
|
|
28
14
|
ENetworkNotificationPosition,
|
|
@@ -34,20 +20,12 @@ import type {
|
|
|
34
20
|
EPinGrantResult,
|
|
35
21
|
} from '../enums/Engine';
|
|
36
22
|
import type { EPlayerVoiceAgreementStatus, EPlayerVoiceTransitionState } from '../enums/OnlineSubsystemEOS';
|
|
37
|
-
import type {
|
|
38
|
-
FColor,
|
|
39
|
-
FMap_Mirror,
|
|
40
|
-
FPointer,
|
|
41
|
-
FUniqueNetId,
|
|
42
|
-
FVoiceAudioDevice,
|
|
43
|
-
FVoiceRoomMemberStatus,
|
|
44
|
-
} from '../structs/Core';
|
|
23
|
+
import type { FColor, FMap_Mirror, FPointer, FUniqueNetId, FVoiceAudioDevice, FVoiceRoomMemberStatus } from '../structs/Core';
|
|
45
24
|
import type {
|
|
46
25
|
FAchievementDetails,
|
|
47
26
|
FEmsFile,
|
|
48
27
|
FFriendHistoryKey,
|
|
49
28
|
FFriendsQuery,
|
|
50
|
-
FGameClipsMaskArea,
|
|
51
29
|
FLocalizedStringSetting,
|
|
52
30
|
FOnlineFriend,
|
|
53
31
|
FOnlineFriendMessage,
|
|
@@ -59,23 +37,8 @@ import type {
|
|
|
59
37
|
} from '../structs/Engine';
|
|
60
38
|
import type { FOnlineStatusMappingEOS } from '../structs/OnlineSubsystemEOS';
|
|
61
39
|
import type { UError, UErrorList, UErrorType, UObject } from './Core';
|
|
62
|
-
import type {
|
|
63
|
-
|
|
64
|
-
UOnlineGameSearch,
|
|
65
|
-
UOnlineGameSettings,
|
|
66
|
-
UOnlinePlayerStorage,
|
|
67
|
-
UOnlineProfileSettings,
|
|
68
|
-
UOnlineStatsRead,
|
|
69
|
-
UOnlineStatsWrite,
|
|
70
|
-
USpeechRecognition,
|
|
71
|
-
} from './Engine';
|
|
72
|
-
import type {
|
|
73
|
-
UOnlineAuthInterfaceImpl,
|
|
74
|
-
UOnlineFriendsInterfaceImpl,
|
|
75
|
-
UOnlineGameInterfaceImpl,
|
|
76
|
-
UOnlinePersistentAuthInterfaceImpl,
|
|
77
|
-
UOnlineSubsystemCommonImpl,
|
|
78
|
-
} from './IpDrv';
|
|
40
|
+
import type { UDateTime, UOnlineGameSearch, UOnlineGameSettings, UOnlinePlayerStorage, UOnlineProfileSettings, UOnlineStatsRead, UOnlineStatsWrite, USpeechRecognition } from './Engine';
|
|
41
|
+
import type { UOnlineAuthInterfaceImpl, UOnlineFriendsInterfaceImpl, UOnlineGameInterfaceImpl, UOnlinePersistentAuthInterfaceImpl, UOnlineSubsystemCommonImpl } from './IpDrv';
|
|
79
42
|
|
|
80
43
|
/**
|
|
81
44
|
* Class OnlineSubsystemEOS.__OnlinePlayerInterfaceEOS__LinkedAccount_0x1
|
|
@@ -111,7 +74,7 @@ export type UAudioDevicesChangedEvent = UObject & {};
|
|
|
111
74
|
|
|
112
75
|
/**
|
|
113
76
|
* Class OnlineSubsystemEOS.EOSErrors
|
|
114
|
-
* Size:
|
|
77
|
+
* Size: 0x00A0
|
|
115
78
|
* Extends: UErrorList
|
|
116
79
|
*/
|
|
117
80
|
export type UEOSErrors = UErrorList & {
|
|
@@ -119,17 +82,6 @@ export type UEOSErrors = UErrorList & {
|
|
|
119
82
|
BlockedListNotFound: UErrorType; // 0x0088 (0x0008) [UErrorType*]
|
|
120
83
|
AcceptFriendRequestFailed: UErrorType; // 0x0090 (0x0008) [UErrorType*]
|
|
121
84
|
RejectFriendRequestFailed: UErrorType; // 0x0098 (0x0008) [UErrorType*]
|
|
122
|
-
GameClipsActivationFailed: UErrorType; // 0x00a0 (0x0008) [UErrorType*]
|
|
123
|
-
GameClipsCleanAudioFailed: UErrorType; // 0x00a8 (0x0008) [UErrorType*]
|
|
124
|
-
GameClipsRecorderInitFailed: UErrorType; // 0x00b0 (0x0008) [UErrorType*]
|
|
125
|
-
GameClipsStartRecordingFailed: UErrorType; // 0x00b8 (0x0008) [UErrorType*]
|
|
126
|
-
GameClipsMaskAreaInvalid: UErrorType; // 0x00c0 (0x0008) [UErrorType*]
|
|
127
|
-
GameClipsStatusListenerFailed: UErrorType; // 0x00c8 (0x0008) [UErrorType*]
|
|
128
|
-
GameClipsUserStatusListenerFailed: UErrorType; // 0x00d0 (0x0008) [UErrorType*]
|
|
129
|
-
GameClipsNotAvailable: UErrorType; // 0x00d8 (0x0008) [UErrorType*]
|
|
130
|
-
GameClipsFailedToUpload: UErrorType; // 0x00e0 (0x0008) [UErrorType*]
|
|
131
|
-
GameClipsCoolingDown: UErrorType; // 0x00e8 (0x0008) [UErrorType*]
|
|
132
|
-
GameClipsUploadLimitReached: UErrorType; // 0x00f0 (0x0008) [UErrorType*]
|
|
133
85
|
};
|
|
134
86
|
|
|
135
87
|
/**
|
|
@@ -220,50 +172,6 @@ export type UOnlineFriendsInterfaceEOS = UOnlineFriendsInterfaceImpl & {
|
|
|
220
172
|
// GetActivePlatformId(LocalUserNum: number, AccountId: FUniqueNetId, PlatformId: FUniqueNetId): boolean
|
|
221
173
|
// RequestLinkedAccounts(LocalUserNum: number, AccountIds: FUniqueNetId[], Callback: FScriptDelegate): boolean
|
|
222
174
|
|
|
223
|
-
/**
|
|
224
|
-
* Class OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS
|
|
225
|
-
* Size: 0x0110
|
|
226
|
-
* Extends: UObject
|
|
227
|
-
*/
|
|
228
|
-
export type UOnlineGameClipsInterfaceEOS = UObject & {
|
|
229
|
-
GameClipsHandle: FPointer; // 0x0060 (0x0008) [FPointer]
|
|
230
|
-
__EventAvailabilityChanged__Delegate: FScriptDelegate; // 0x0068 (0x0018) [FScriptDelegate]
|
|
231
|
-
__EventRecordingChanged__Delegate: FScriptDelegate; // 0x0080 (0x0018) [FScriptDelegate]
|
|
232
|
-
__EventConnectionStatusChanged__Delegate: FScriptDelegate; // 0x0098 (0x0018) [FScriptDelegate]
|
|
233
|
-
__EventClipStatusChanged__Delegate: FScriptDelegate; // 0x00b0 (0x0018) [FScriptDelegate]
|
|
234
|
-
__EventMaskStatusChanged__Delegate: FScriptDelegate; // 0x00c8 (0x0018) [FScriptDelegate]
|
|
235
|
-
__EventGeneralErrorOccurred__Delegate: FScriptDelegate; // 0x00e0 (0x0018) [FScriptDelegate]
|
|
236
|
-
__EventClipErrorOccurred__Delegate: FScriptDelegate; // 0x00f8 (0x0018) [FScriptDelegate]
|
|
237
|
-
};
|
|
238
|
-
|
|
239
|
-
// OnlineGameClipsInterfaceEOS Functions
|
|
240
|
-
// NotifyEventClipErrorOccurred(InCallback: FScriptDelegate): void
|
|
241
|
-
// EventClipErrorOccurred(InEpicAccountId: string, ClipId: number, InErrorType: UErrorType): void
|
|
242
|
-
// NotifyEventGeneralErrorOccurred(InCallback: FScriptDelegate): void
|
|
243
|
-
// EventGeneralErrorOccurred(InErrorType: UErrorType): void
|
|
244
|
-
// NotifyEventMaskStatusChanged(InCallback: FScriptDelegate): void
|
|
245
|
-
// EventMaskStatusChanged(InMaskAreaHandle: bigint, InMaskArea: FGameClipsMaskArea, InNewMaskStatus: EGameClipsMaskStatus): void
|
|
246
|
-
// NotifyEventClipStatusChanged(InCallback: FScriptDelegate): void
|
|
247
|
-
// EventClipStatusChanged(InEpicAccountId: string, InClipId: number, InNewClipStatus: EGameClipsClipStatus): void
|
|
248
|
-
// NotifyEventConnectionStatusChanged(InCallback: FScriptDelegate): void
|
|
249
|
-
// EventConnectionStatusChanged(InEpicAccountId: string, InConnection: EGameClipsConnection, InNewConnectionStatus: EGameClipsConnectionStatus): void
|
|
250
|
-
// NotifyEventRecordingChanged(InCallback: FScriptDelegate): void
|
|
251
|
-
// EventRecordingChanged(InNewRecording: EGameClipsRecording): void
|
|
252
|
-
// NotifyEventAvailabilityChanged(InCallback: FScriptDelegate): void
|
|
253
|
-
// EventAvailabilityChanged(InNewAvailability: EGameClipsAvailability): void
|
|
254
|
-
// IsUploading(): boolean
|
|
255
|
-
// IsRecording(): boolean
|
|
256
|
-
// IsAvailable(): boolean
|
|
257
|
-
// GetTimeUntilUnthrottled(InEpicAccountId: string): number
|
|
258
|
-
// IsClipUploadingLimitReached(InEpicAccountId: string): boolean
|
|
259
|
-
// SetUserMaxClipUploadsPerMinute(InMaxClipUploadsPerMinute: number): void
|
|
260
|
-
// IsAccountLinked(InEpicAccountId: string): boolean
|
|
261
|
-
// CreateClip(InEpicAccountId: string, InClipType: string): number
|
|
262
|
-
// DisableMaskArea(InMaskAreaHandle: bigint): void
|
|
263
|
-
// EnableMaskArea(InMaskArea: FGameClipsMaskArea): bigint
|
|
264
|
-
// StopRecording(): void
|
|
265
|
-
// StartRecording(InClipDuration: bigint): void
|
|
266
|
-
|
|
267
175
|
/**
|
|
268
176
|
* Class OnlineSubsystemEOS.OnlineGameInterfaceEOS
|
|
269
177
|
* Size: 0x0334
|
|
@@ -682,67 +590,64 @@ export type UOnlineStatsInterfaceEOS = UObject & {
|
|
|
682
590
|
|
|
683
591
|
/**
|
|
684
592
|
* Class OnlineSubsystemEOS.OnlineSubsystemEOS
|
|
685
|
-
* Size:
|
|
593
|
+
* Size: 0x0720
|
|
686
594
|
* Extends: UOnlineSubsystemCommonImpl
|
|
687
595
|
*/
|
|
688
596
|
export type UOnlineSubsystemEOS = UOnlineSubsystemCommonImpl & {
|
|
689
|
-
PlayerInterfaceEOS: UOnlinePlayerInterfaceEOS; //
|
|
690
|
-
GameInterfaceEOS: UOnlineGameInterfaceEOS; //
|
|
691
|
-
StatsInterfaceEOS: UOnlineStatsInterfaceEOS; //
|
|
692
|
-
AuthInterfaceEOS: UOnlineAuthInterfaceEOS; //
|
|
693
|
-
PersistentAuthInterfaceEOS: UOnlinePersistentAuthInterfaceEOS; //
|
|
694
|
-
FriendsInterfaceEOS: UOnlineFriendsInterfaceEOS; //
|
|
695
|
-
UserCloudFileInterfaceEOS: UOnlineUserCloudFileInterfaceEOS; //
|
|
696
|
-
VoiceInterfaceEOS: UOnlineVoiceInterfaceEOS; //
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
__EventTextMessageSigned__Delegate: FScriptDelegate; // 0x0700 (0x0018) [FScriptDelegate]
|
|
744
|
-
__EventTextMessageValidated__Delegate: FScriptDelegate; // 0x0718 (0x0018) [FScriptDelegate]
|
|
745
|
-
__OnCaptureAvailabilityChange__Delegate: FScriptDelegate; // 0x0730 (0x0018) [FScriptDelegate]
|
|
597
|
+
PlayerInterfaceEOS: UOnlinePlayerInterfaceEOS; // 0x03b0 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
598
|
+
GameInterfaceEOS: UOnlineGameInterfaceEOS; // 0x03b8 (0x0008) [UOnlineGameInterfaceEOS*]
|
|
599
|
+
StatsInterfaceEOS: UOnlineStatsInterfaceEOS; // 0x03c0 (0x0008) [UOnlineStatsInterfaceEOS*]
|
|
600
|
+
AuthInterfaceEOS: UOnlineAuthInterfaceEOS; // 0x03c8 (0x0008) [UOnlineAuthInterfaceEOS*]
|
|
601
|
+
PersistentAuthInterfaceEOS: UOnlinePersistentAuthInterfaceEOS; // 0x03d0 (0x0008) [UOnlinePersistentAuthInterfaceEOS*]
|
|
602
|
+
FriendsInterfaceEOS: UOnlineFriendsInterfaceEOS; // 0x03d8 (0x0008) [UOnlineFriendsInterfaceEOS*]
|
|
603
|
+
UserCloudFileInterfaceEOS: UOnlineUserCloudFileInterfaceEOS; // 0x03e0 (0x0008) [UOnlineUserCloudFileInterfaceEOS*]
|
|
604
|
+
VoiceInterfaceEOS: UOnlineVoiceInterfaceEOS; // 0x03e8 (0x0008) [UOnlineVoiceInterfaceEOS*]
|
|
605
|
+
AntiCheatInterfaceEOS: UOnlineAntiCheatInterfaceEOS; // 0x03f0 (0x0008) [UOnlineAntiCheatInterfaceEOS*]
|
|
606
|
+
SpeechRecognitionCompleteDelegates: FScriptDelegate[]; // 0x03f8 (0x0010) [TArray<FScriptDelegate>]
|
|
607
|
+
AuthHandle: FPointer; // 0x0408 (0x0008) [FPointer]
|
|
608
|
+
FriendsHandle: FPointer; // 0x0410 (0x0008) [FPointer]
|
|
609
|
+
UserInfoHandle: FPointer; // 0x0418 (0x0008) [FPointer]
|
|
610
|
+
PresenceHandle: FPointer; // 0x0420 (0x0008) [FPointer]
|
|
611
|
+
ConnectHandle: FPointer; // 0x0428 (0x0008) [FPointer]
|
|
612
|
+
SessionsHandle: FPointer; // 0x0430 (0x0008) [FPointer]
|
|
613
|
+
PDSHandle: FPointer; // 0x0438 (0x0008) [FPointer]
|
|
614
|
+
StatsHandle: FPointer; // 0x0440 (0x0008) [FPointer]
|
|
615
|
+
AchievementsHandle: FPointer; // 0x0448 (0x0008) [FPointer]
|
|
616
|
+
EcomHandle: FPointer; // 0x0450 (0x0008) [FPointer]
|
|
617
|
+
UIHandle: FPointer; // 0x0458 (0x0008) [FPointer]
|
|
618
|
+
RTCHandle: FPointer; // 0x0460 (0x0008) [FPointer]
|
|
619
|
+
RTCAudioHandle: FPointer; // 0x0468 (0x0008) [FPointer]
|
|
620
|
+
RTCAdminHandle: FPointer; // 0x0470 (0x0008) [FPointer]
|
|
621
|
+
EULATrackingHandle: FPointer; // 0x0478 (0x0008) [FPointer]
|
|
622
|
+
UnlockedDLC: FName[]; // 0x0480 (0x0010) [TArray<FName>]
|
|
623
|
+
UnlockedDLCDelegates: FScriptDelegate[]; // 0x0490 (0x0010) [TArray<FScriptDelegate>]
|
|
624
|
+
ExternalUIChangeDelegates: FScriptDelegate[]; // 0x04a0 (0x0010) [TArray<FScriptDelegate>]
|
|
625
|
+
__OnMicroTxnResponse__Delegate: FScriptDelegate; // 0x04b0 (0x0018) [FScriptDelegate]
|
|
626
|
+
__EventGetAppPriceInfoComplete__Delegate: FScriptDelegate; // 0x04c8 (0x0018) [FScriptDelegate]
|
|
627
|
+
__OnPlayerTalking__Delegate: FScriptDelegate; // 0x04e0 (0x0018) [FScriptDelegate]
|
|
628
|
+
__OnRecognitionComplete__Delegate: FScriptDelegate; // 0x04f8 (0x0018) [FScriptDelegate]
|
|
629
|
+
__OnReadOnlineStatsComplete__Delegate: FScriptDelegate; // 0x0510 (0x0018) [FScriptDelegate]
|
|
630
|
+
__OnRegisterHostStatGuidComplete__Delegate: FScriptDelegate; // 0x0528 (0x0018) [FScriptDelegate]
|
|
631
|
+
__OnFlushOnlineStatsComplete__Delegate: FScriptDelegate; // 0x0540 (0x0018) [FScriptDelegate]
|
|
632
|
+
__OnLinkStatusChange__Delegate: FScriptDelegate; // 0x0558 (0x0018) [FScriptDelegate]
|
|
633
|
+
__OnExternalUIChange__Delegate: FScriptDelegate; // 0x0570 (0x0018) [FScriptDelegate]
|
|
634
|
+
__OnControllerChange__Delegate: FScriptDelegate; // 0x0588 (0x0018) [FScriptDelegate]
|
|
635
|
+
__OnConnectionStatusChange__Delegate: FScriptDelegate; // 0x05a0 (0x0018) [FScriptDelegate]
|
|
636
|
+
__OnStorageDeviceChange__Delegate: FScriptDelegate; // 0x05b8 (0x0018) [FScriptDelegate]
|
|
637
|
+
__OnCreateOnlineAccountCompleted__Delegate: FScriptDelegate; // 0x05d0 (0x0018) [FScriptDelegate]
|
|
638
|
+
__OnPlayerTalkingStateChange__Delegate: FScriptDelegate; // 0x05e8 (0x0018) [FScriptDelegate]
|
|
639
|
+
__OnCloseKickPlayerDialog__Delegate: FScriptDelegate; // 0x0600 (0x0018) [FScriptDelegate]
|
|
640
|
+
__OnCommerceDialogClosed__Delegate: FScriptDelegate; // 0x0618 (0x0018) [FScriptDelegate]
|
|
641
|
+
__OnErrorDialogClosed__Delegate: FScriptDelegate; // 0x0630 (0x0018) [FScriptDelegate]
|
|
642
|
+
__OnUnlockedDLCChange__Delegate: FScriptDelegate; // 0x0648 (0x0018) [FScriptDelegate]
|
|
643
|
+
__OnStorePurchaseCompleteDelegate__Delegate: FScriptDelegate; // 0x0660 (0x0018) [FScriptDelegate]
|
|
644
|
+
__OnUserOrphaned__Delegate: FScriptDelegate; // 0x0678 (0x0018) [FScriptDelegate]
|
|
645
|
+
__OnUserRestored__Delegate: FScriptDelegate; // 0x0690 (0x0018) [FScriptDelegate]
|
|
646
|
+
__OnPlayerSigningOut__Delegate: FScriptDelegate; // 0x06a8 (0x0018) [FScriptDelegate]
|
|
647
|
+
__EventCryptoKeyCreated__Delegate: FScriptDelegate; // 0x06c0 (0x0018) [FScriptDelegate]
|
|
648
|
+
__EventTextMessageSigned__Delegate: FScriptDelegate; // 0x06d8 (0x0018) [FScriptDelegate]
|
|
649
|
+
__EventTextMessageValidated__Delegate: FScriptDelegate; // 0x06f0 (0x0018) [FScriptDelegate]
|
|
650
|
+
__OnCaptureAvailabilityChange__Delegate: FScriptDelegate; // 0x0708 (0x0018) [FScriptDelegate]
|
|
746
651
|
};
|
|
747
652
|
|
|
748
653
|
// OnlineSubsystemEOS Functions
|
|
@@ -1013,12 +918,3 @@ export type UOnlineVoiceInterfaceEOS = UObject & {
|
|
|
1013
918
|
// EventRemovedFromVoiceRoom(EpicAccountId: string, RoomName: string, RemovedResult: EVoiceResultCode): void
|
|
1014
919
|
// EventJoinedVoiceRoom(EpicAccountId: string, RoomName: string, JoinResult: EVoiceResultCode): void
|
|
1015
920
|
// EventLeftVoiceRoom(EpicAccountId: string, RoomName: string, LeaveResult: EVoiceResultCode): void
|
|
1016
|
-
|
|
1017
|
-
/**
|
|
1018
|
-
* Class OnlineSubsystemEOS.VideoRecorderEOS
|
|
1019
|
-
* Size: 0x0068
|
|
1020
|
-
* Extends: UObject
|
|
1021
|
-
*/
|
|
1022
|
-
export type UVideoRecorderEOS = UObject & {
|
|
1023
|
-
VfTable_FTickableObject: FPointer; // 0x0060 (0x0008) [FPointer]
|
|
1024
|
-
};
|