@rlsdk/steam 1.0.0 → 1.0.2
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 +1 -12
- package/classes/Core.ts +65 -34
- package/classes/Engine.ts +4 -2
- package/classes/GFxUI.ts +3 -31
- package/classes/IpDrv.ts +1 -11
- package/classes/OnlineSubsystemEOS.ts +114 -74
- package/classes/OnlineSubsystemSteamworks.ts +1 -9
- package/classes/ProjectX.ts +241 -96
- package/classes/TAGame.ts +3516 -2322
- package/classes/WinDrv.ts +1 -8
- package/constants/TAGame.ts +3 -1
- package/enums/Core.ts +56 -0
- package/enums/Engine.ts +4 -2
- package/enums/TAGame.ts +66 -7
- package/offsets/Core.ts +53 -34
- package/offsets/OnlineSubsystemEOS.ts +86 -48
- package/offsets/ProjectX.ts +227 -101
- package/offsets/TAGame.ts +3318 -2296
- package/offsets/globals.ts +2 -2
- package/package.json +5 -4
- package/parameters/AkAudio.ts +2 -18
- package/parameters/Core.ts +84 -27
- package/parameters/Engine.ts +24 -30
- package/parameters/GFxUI.ts +1 -9
- package/parameters/IpDrv.ts +2 -19
- package/parameters/OnlineSubsystemEOS.ts +168 -21
- package/parameters/ProjectX.ts +505 -263
- package/parameters/TAGame.ts +4742 -1449
- package/structs/Core.ts +1 -7
- package/structs/OnlineSubsystemSteamworks.ts +2 -13
- package/structs/ProjectX.ts +26 -34
- package/structs/TAGame.ts +300 -54
package/parameters/ProjectX.ts
CHANGED
|
@@ -5,15 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
7
|
import type { UAkPlaySoundComponent } from '../classes/AkAudio';
|
|
8
|
-
import type {
|
|
9
|
-
UAsyncTask,
|
|
10
|
-
UDebugDrawer,
|
|
11
|
-
UError,
|
|
12
|
-
UErrorType,
|
|
13
|
-
UObject,
|
|
14
|
-
UObjectProvider,
|
|
15
|
-
UStringMap,
|
|
16
|
-
} from '../classes/Core';
|
|
8
|
+
import type { UAsyncTask, UDebugDrawer, UError, UErrorType, UObject, UObjectProvider, UStringMap } from '../classes/Core';
|
|
17
9
|
import type {
|
|
18
10
|
UActor,
|
|
19
11
|
UActorComponent,
|
|
@@ -56,6 +48,7 @@ import type {
|
|
|
56
48
|
USequenceEvent,
|
|
57
49
|
USkelControlBase,
|
|
58
50
|
USkeletalMeshComponent,
|
|
51
|
+
UStaticMeshComponent,
|
|
59
52
|
UTexture,
|
|
60
53
|
UTexture2DDynamic,
|
|
61
54
|
UTimeWindow,
|
|
@@ -420,6 +413,7 @@ import type {
|
|
|
420
413
|
U__EpicFriendsPlugin_X__GetOutgoingFriendRequestsWithCustomCallback_0x1,
|
|
421
414
|
U__EpicFriendsPlugin_X__RejectFriendRequest_0x1,
|
|
422
415
|
U__EpicFriendsPlugin_X__RemoveFriend_0x1,
|
|
416
|
+
U__EpicFriendsPlugin_X__Unblock_0x1,
|
|
423
417
|
U__EpicFriendsPlugin_X__bLock_0x1,
|
|
424
418
|
U__EpicLogin_X__HandleLoginChanged_0x1,
|
|
425
419
|
U__EpicLogin_X__RequestNintendoAccountAuthorization_0x1,
|
|
@@ -484,6 +478,7 @@ import type {
|
|
|
484
478
|
U__PartySequence_InvitedToPsyNetParty_X__HandlePlayerInvitedPrompt_0x1,
|
|
485
479
|
U__PartySequence_InvitedToPsyNetParty_X__HandlePlayerInvitedSilent_0x1,
|
|
486
480
|
U__PartySequence_JoinParty_X__HandleGetPlatformPartyMessage_0x1,
|
|
481
|
+
U__PlayerController_X__CloseConnectionWithReason_0x1,
|
|
487
482
|
U__PsyNetBeacon_X__SendMessageToClients_0x1,
|
|
488
483
|
U__PsyNetBeacon_X__SendMessageToServer_0x1,
|
|
489
484
|
U__PsyNetConnection_X__ProcessServiceCall_0x1,
|
|
@@ -499,6 +494,10 @@ import type {
|
|
|
499
494
|
U__RegionConfig_X__GetSubRegions_0x1,
|
|
500
495
|
U__RemoteAvatarPermissions_X__GetPermissions_0x1,
|
|
501
496
|
U__RemoteAvatarPermissions_X__SetAvatarPermission_0x1,
|
|
497
|
+
U__ServerPlayerIdCache_X__GetEpicIdFromPlayerId_0x1,
|
|
498
|
+
U__ServerPlayerIdCache_X__GetProductUserIdFromEpicId_0x1,
|
|
499
|
+
U__ServerPlayerIdCache_X__GetProductUserIdFromPlayerId_0x1,
|
|
500
|
+
U__ServerPlayerIdCache_X__RegisterPlayer_0x1,
|
|
502
501
|
U__ServerPlayerTracker_X__AddPlayer_0x1,
|
|
503
502
|
U__StatusObserver_X__FindByAcceptedType_0x1,
|
|
504
503
|
U__StatusObserver_X__ObservesTriggerType_0x1,
|
|
@@ -580,19 +579,7 @@ import type {
|
|
|
580
579
|
EWordFilterUsage,
|
|
581
580
|
PartyProcessingStatus,
|
|
582
581
|
} from '../enums/ProjectX';
|
|
583
|
-
import type {
|
|
584
|
-
FBox,
|
|
585
|
-
FColor,
|
|
586
|
-
FEncryptedKeyIndex,
|
|
587
|
-
FGuid,
|
|
588
|
-
FIntPoint,
|
|
589
|
-
FLinearColor,
|
|
590
|
-
FRotator,
|
|
591
|
-
FTPOV,
|
|
592
|
-
FUniqueNetId,
|
|
593
|
-
FVector,
|
|
594
|
-
FVector2D,
|
|
595
|
-
} from '../structs/Core';
|
|
582
|
+
import type { FBox, FColor, FEncryptedKeyIndex, FGuid, FIntPoint, FLinearColor, FRotator, FTPOV, FUniqueNetId, FVector, FVector2D } from '../structs/Core';
|
|
596
583
|
import type {
|
|
597
584
|
FActiveLobbyInfo,
|
|
598
585
|
FBasicLobbyInfo,
|
|
@@ -673,6 +660,7 @@ import type {
|
|
|
673
660
|
FPlayerBlockListenData,
|
|
674
661
|
FPlayerClubSyncResult,
|
|
675
662
|
FPlayerDLCInfo,
|
|
663
|
+
FPlayerIdLink,
|
|
676
664
|
FPlayerPermissionsList,
|
|
677
665
|
FPlayerSeasonRewardProgress,
|
|
678
666
|
FPlayerSkillRating,
|
|
@@ -721,11 +709,10 @@ import type {
|
|
|
721
709
|
/**
|
|
722
710
|
* Function ProjectX.____OnlineGameParty_X__UpdatePartyInfo_0x1____OnlineGameParty_X__UpdatePartyInfo_0x1_0x1.____OnlineGameParty_X__UpdatePartyInfo_0x1____OnlineGameParty_X__UpdatePartyInfo_0x1_0x1
|
|
723
711
|
*/
|
|
724
|
-
export type ____OnlineGameParty_X__UpdatePartyInfo_0x1____OnlineGameParty_X__UpdatePartyInfo_0x1_0x1_____OnlineGameParty_X__UpdatePartyInfo_0x1____OnlineGameParty_X__UpdatePartyInfo_0x1_0x1_Params =
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
};
|
|
712
|
+
export type ____OnlineGameParty_X__UpdatePartyInfo_0x1____OnlineGameParty_X__UpdatePartyInfo_0x1_0x1_____OnlineGameParty_X__UpdatePartyInfo_0x1____OnlineGameParty_X__UpdatePartyInfo_0x1_0x1_Params = {
|
|
713
|
+
LM: FLobbyMember; // 0x0000 (0x0068) [FLobbyMember] [CPF_Parm]
|
|
714
|
+
ReturnValue: boolean; // 0x0068 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
715
|
+
};
|
|
729
716
|
|
|
730
717
|
/**
|
|
731
718
|
* Function ProjectX.____OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x2____OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x4_0x1.____OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x2____OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x4_0x1
|
|
@@ -849,19 +836,17 @@ export type __AvatarRequester_X__TimerReadAvatars_0x1___AvatarRequester_X__Timer
|
|
|
849
836
|
/**
|
|
850
837
|
* Function ProjectX.__BlockStatusReporter_X__OnBlockListDownloadComplete_0x1.__BlockStatusReporter_X__OnBlockListDownloadComplete_0x1
|
|
851
838
|
*/
|
|
852
|
-
export type __BlockStatusReporter_X__OnBlockListDownloadComplete_0x1___BlockStatusReporter_X__OnBlockListDownloadComplete_0x1_Params =
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
};
|
|
839
|
+
export type __BlockStatusReporter_X__OnBlockListDownloadComplete_0x1___BlockStatusReporter_X__OnBlockListDownloadComplete_0x1_Params = {
|
|
840
|
+
Sub: FPlayerBlockListenData; // 0x0000 (0x0028) [FPlayerBlockListenData] [CPF_Parm]
|
|
841
|
+
};
|
|
856
842
|
|
|
857
843
|
/**
|
|
858
844
|
* Function ProjectX.__BlockStatusReporter_X__TriggerPlayerCallback_0x1.__BlockStatusReporter_X__TriggerPlayerCallback_0x1
|
|
859
845
|
*/
|
|
860
|
-
export type __BlockStatusReporter_X__TriggerPlayerCallback_0x1___BlockStatusReporter_X__TriggerPlayerCallback_0x1_Params =
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
};
|
|
846
|
+
export type __BlockStatusReporter_X__TriggerPlayerCallback_0x1___BlockStatusReporter_X__TriggerPlayerCallback_0x1_Params = {
|
|
847
|
+
BlockedPlayer: FOnlineFriend; // 0x0000 (0x0118) [FOnlineFriend] [CPF_Parm]
|
|
848
|
+
ReturnValue: boolean; // 0x0118 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
849
|
+
};
|
|
865
850
|
|
|
866
851
|
/**
|
|
867
852
|
* Function ProjectX.__CheatManager_X__RandomSleep_0x1.__CheatManager_X__RandomSleep_0x1
|
|
@@ -879,11 +864,10 @@ export type __ClubUtil_X__IsClubTeam_0x1___ClubUtil_X__IsClubTeam_0x1_Params = {
|
|
|
879
864
|
/**
|
|
880
865
|
* Function ProjectX.__CrossplayConfig_X__GetDisabledCrossplayGroup_0x1.__CrossplayConfig_X__GetDisabledCrossplayGroup_0x1
|
|
881
866
|
*/
|
|
882
|
-
export type __CrossplayConfig_X__GetDisabledCrossplayGroup_0x1___CrossplayConfig_X__GetDisabledCrossplayGroup_0x1_Params =
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
};
|
|
867
|
+
export type __CrossplayConfig_X__GetDisabledCrossplayGroup_0x1___CrossplayConfig_X__GetDisabledCrossplayGroup_0x1_Params = {
|
|
868
|
+
P: FCrossplayGroup; // 0x0000 (0x0010) [FCrossplayGroup] [CPF_Parm]
|
|
869
|
+
ReturnValue: boolean; // 0x0010 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
870
|
+
};
|
|
887
871
|
|
|
888
872
|
/**
|
|
889
873
|
* Function ProjectX.__EOSHelpers_X__RequestClientAuthToken_0x1.__EOSHelpers_X__RequestClientAuthToken_0x1
|
|
@@ -915,12 +899,11 @@ export type __EOSHelpers_X__SendHTTPRequest_0x1___EOSHelpers_X__SendHTTPRequest_
|
|
|
915
899
|
/**
|
|
916
900
|
* Function ProjectX.__EOSHelpers_X__SendHTTPRequestEOSToken_0x2.____EOSHelpers_X__SendHTTPRequestEOSToken_0x2____EOSHelpers_X__SendHTTPRequestEOSToken_0x1_0x1
|
|
917
901
|
*/
|
|
918
|
-
export type __EOSHelpers_X__SendHTTPRequestEOSToken_0x2_____EOSHelpers_X__SendHTTPRequestEOSToken_0x2____EOSHelpers_X__SendHTTPRequestEOSToken_0x1_0x1_Params =
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
};
|
|
902
|
+
export type __EOSHelpers_X__SendHTTPRequestEOSToken_0x2_____EOSHelpers_X__SendHTTPRequestEOSToken_0x2____EOSHelpers_X__SendHTTPRequestEOSToken_0x1_0x1_Params = {
|
|
903
|
+
bSuccess: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm]
|
|
904
|
+
EASAuthTicket: string; // 0x0008 (0x0010) [FString] [CPF_Parm]
|
|
905
|
+
bInvalidAuthToken: boolean; // 0x0018 (0x0004) [bool : 0x1]
|
|
906
|
+
};
|
|
924
907
|
|
|
925
908
|
/**
|
|
926
909
|
* Function ProjectX.__EOSHelpers_X__SendHTTPRequestEOSToken_0x2.__EOSHelpers_X__SendHTTPRequestEOSToken_0x1
|
|
@@ -963,12 +946,11 @@ export type __EpicFriendsPlugin_X__AcceptFriendRequest_0x1___EpicFriendsPlugin_X
|
|
|
963
946
|
/**
|
|
964
947
|
* Function ProjectX.__EpicFriendsPlugin_X__AddFriendWithCustomCallback_0x1.__EpicFriendsPlugin_X__AddFriendWithCustomCallback_0x1
|
|
965
948
|
*/
|
|
966
|
-
export type __EpicFriendsPlugin_X__AddFriendWithCustomCallback_0x1___EpicFriendsPlugin_X__AddFriendWithCustomCallback_0x1_Params =
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
};
|
|
949
|
+
export type __EpicFriendsPlugin_X__AddFriendWithCustomCallback_0x1___EpicFriendsPlugin_X__AddFriendWithCustomCallback_0x1_Params = {
|
|
950
|
+
R: UEOS_ManageFriendsListResponse; // 0x0000 (0x0008) [UEOS_ManageFriendsListResponse*] [CPF_Parm]
|
|
951
|
+
E: UError; // 0x0008 (0x0008) [UError*] [CPF_Parm]
|
|
952
|
+
ResponseCode: number; // 0x0010 (0x0004) [int32] [CPF_Parm]
|
|
953
|
+
};
|
|
972
954
|
|
|
973
955
|
/**
|
|
974
956
|
* Function ProjectX.__EpicFriendsPlugin_X__bLock_0x1.__EpicFriendsPlugin_X__bLock_0x1
|
|
@@ -982,12 +964,11 @@ export type __EpicFriendsPlugin_X__bLock_0x1___EpicFriendsPlugin_X__bLock_0x1_Pa
|
|
|
982
964
|
/**
|
|
983
965
|
* Function ProjectX.__EpicFriendsPlugin_X__GetOutgoingFriendRequestsWithCustomCallback_0x1.__EpicFriendsPlugin_X__GetOutgoingFriendRequestsWithCustomCallback_0x1
|
|
984
966
|
*/
|
|
985
|
-
export type __EpicFriendsPlugin_X__GetOutgoingFriendRequestsWithCustomCallback_0x1___EpicFriendsPlugin_X__GetOutgoingFriendRequestsWithCustomCallback_0x1_Params =
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
};
|
|
967
|
+
export type __EpicFriendsPlugin_X__GetOutgoingFriendRequestsWithCustomCallback_0x1___EpicFriendsPlugin_X__GetOutgoingFriendRequestsWithCustomCallback_0x1_Params = {
|
|
968
|
+
R: UEOS_GetAccountsResponse; // 0x0000 (0x0008) [UEOS_GetAccountsResponse*] [CPF_Parm]
|
|
969
|
+
E: UError; // 0x0008 (0x0008) [UError*] [CPF_Parm]
|
|
970
|
+
ResponseCode: number; // 0x0010 (0x0004) [int32] [CPF_Parm]
|
|
971
|
+
};
|
|
991
972
|
|
|
992
973
|
/**
|
|
993
974
|
* Function ProjectX.__EpicFriendsPlugin_X__RejectFriendRequest_0x1.__EpicFriendsPlugin_X__RejectFriendRequest_0x1
|
|
@@ -1007,6 +988,15 @@ export type __EpicFriendsPlugin_X__RemoveFriend_0x1___EpicFriendsPlugin_X__Remov
|
|
|
1007
988
|
ResponseCode: number; // 0x0010 (0x0004) [int32] [CPF_Parm]
|
|
1008
989
|
};
|
|
1009
990
|
|
|
991
|
+
/**
|
|
992
|
+
* Function ProjectX.__EpicFriendsPlugin_X__Unblock_0x1.__EpicFriendsPlugin_X__Unblock_0x1
|
|
993
|
+
*/
|
|
994
|
+
export type __EpicFriendsPlugin_X__Unblock_0x1___EpicFriendsPlugin_X__Unblock_0x1_Params = {
|
|
995
|
+
R: UEOS_ManageBlockListResponse; // 0x0000 (0x0008) [UEOS_ManageBlockListResponse*] [CPF_Parm]
|
|
996
|
+
E: UError; // 0x0008 (0x0008) [UError*] [CPF_Parm]
|
|
997
|
+
ResponseCode: number; // 0x0010 (0x0004) [int32] [CPF_Parm]
|
|
998
|
+
};
|
|
999
|
+
|
|
1010
1000
|
/**
|
|
1011
1001
|
* Function ProjectX.__EpicLogin_X__HandleLoginChanged_0x1.__EpicLogin_X__HandleLoginChanged_0x1
|
|
1012
1002
|
*/
|
|
@@ -1015,10 +1005,9 @@ export type __EpicLogin_X__HandleLoginChanged_0x1___EpicLogin_X__HandleLoginChan
|
|
|
1015
1005
|
/**
|
|
1016
1006
|
* Function ProjectX.__EpicLogin_X__RequestNintendoAccountAuthorization_0x1.__EpicLogin_X__RequestNintendoAccountAuthorization_0x1
|
|
1017
1007
|
*/
|
|
1018
|
-
export type __EpicLogin_X__RequestNintendoAccountAuthorization_0x1___EpicLogin_X__RequestNintendoAccountAuthorization_0x1_Params =
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
};
|
|
1008
|
+
export type __EpicLogin_X__RequestNintendoAccountAuthorization_0x1___EpicLogin_X__RequestNintendoAccountAuthorization_0x1_Params = {
|
|
1009
|
+
NintendoAccountToken: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
1010
|
+
};
|
|
1022
1011
|
|
|
1023
1012
|
/**
|
|
1024
1013
|
* Function ProjectX.__EpicLogin_X__TriggerAuthTicketDelegate_0x1.__EpicLogin_X__TriggerAuthTicketDelegate_0x1
|
|
@@ -1031,21 +1020,19 @@ export type __EpicLogin_X__TriggerAuthTicketDelegate_0x1___EpicLogin_X__TriggerA
|
|
|
1031
1020
|
/**
|
|
1032
1021
|
* Function ProjectX.__EpicLogin_X__UpdateTwoFactorAuthenticationStatus_0x1.____EpicLogin_X__UpdateTwoFactorAuthenticationStatus_0x1____EpicLogin_X__UpdateTwoFactorAuthenticationStatus_0x1_0x1
|
|
1033
1022
|
*/
|
|
1034
|
-
export type __EpicLogin_X__UpdateTwoFactorAuthenticationStatus_0x1_____EpicLogin_X__UpdateTwoFactorAuthenticationStatus_0x1____EpicLogin_X__UpdateTwoFactorAuthenticationStatus_0x1_0x1_Params =
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
};
|
|
1023
|
+
export type __EpicLogin_X__UpdateTwoFactorAuthenticationStatus_0x1_____EpicLogin_X__UpdateTwoFactorAuthenticationStatus_0x1____EpicLogin_X__UpdateTwoFactorAuthenticationStatus_0x1_0x1_Params = {
|
|
1024
|
+
Ticket: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
1025
|
+
Id: string; // 0x0010 (0x0010) [FString] [CPF_Parm]
|
|
1026
|
+
Err: UError; // 0x0020 (0x0008) [UError*] [CPF_Parm]
|
|
1027
|
+
};
|
|
1040
1028
|
|
|
1041
1029
|
/**
|
|
1042
1030
|
* Function ProjectX.__EpicLogin_X__UpdateTwoFactorAuthenticationStatus_0x1.__EpicLogin_X__UpdateTwoFactorAuthenticationStatus_0x1
|
|
1043
1031
|
*/
|
|
1044
|
-
export type __EpicLogin_X__UpdateTwoFactorAuthenticationStatus_0x1___EpicLogin_X__UpdateTwoFactorAuthenticationStatus_0x1_Params =
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
};
|
|
1032
|
+
export type __EpicLogin_X__UpdateTwoFactorAuthenticationStatus_0x1___EpicLogin_X__UpdateTwoFactorAuthenticationStatus_0x1_Params = {
|
|
1033
|
+
bSuccess: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm]
|
|
1034
|
+
AuthTicket: string; // 0x0008 (0x0010) [FString] [CPF_Parm]
|
|
1035
|
+
};
|
|
1049
1036
|
|
|
1050
1037
|
/**
|
|
1051
1038
|
* Function ProjectX.__LocalClubData_X__GetClubByID_0x1.__LocalClubData_X__GetClubByID_0x1
|
|
@@ -1162,19 +1149,17 @@ export type __OnlineClubProvider_X__SyncClubDetailsArray_0x1___OnlineClubProvide
|
|
|
1162
1149
|
/**
|
|
1163
1150
|
* Function ProjectX.__OnlineClubProvider_X__SyncPlayerClubDetails_0x1.__OnlineClubProvider_X__SyncPlayerClubDetails_0x1
|
|
1164
1151
|
*/
|
|
1165
|
-
export type __OnlineClubProvider_X__SyncPlayerClubDetails_0x1___OnlineClubProvider_X__SyncPlayerClubDetails_0x1_Params =
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
};
|
|
1152
|
+
export type __OnlineClubProvider_X__SyncPlayerClubDetails_0x1___OnlineClubProvider_X__SyncPlayerClubDetails_0x1_Params = {
|
|
1153
|
+
R: URPC_GetPlayerClubDetails_X; // 0x0000 (0x0008) [URPC_GetPlayerClubDetails_X*] [CPF_Parm]
|
|
1154
|
+
ReturnValue: boolean; // 0x0008 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
1155
|
+
};
|
|
1170
1156
|
|
|
1171
1157
|
/**
|
|
1172
1158
|
* Function ProjectX.__OnlineClubProvider_X__SyncPlayerClubDetails_0x1.__OnlineClubProvider_X__SyncPlayerClubDetails_0x2
|
|
1173
1159
|
*/
|
|
1174
|
-
export type __OnlineClubProvider_X__SyncPlayerClubDetails_0x1___OnlineClubProvider_X__SyncPlayerClubDetails_0x2_Params =
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
};
|
|
1160
|
+
export type __OnlineClubProvider_X__SyncPlayerClubDetails_0x1___OnlineClubProvider_X__SyncPlayerClubDetails_0x2_Params = {
|
|
1161
|
+
_: URPC_X; // 0x0000 (0x0008) [URPC_X*] [CPF_Parm]
|
|
1162
|
+
};
|
|
1178
1163
|
|
|
1179
1164
|
/**
|
|
1180
1165
|
* Function ProjectX.__OnlineGame_X__CheckPsyNetConnection_0x1.__OnlineGame_X__CheckPsyNetConnection_0x1
|
|
@@ -1183,6 +1168,13 @@ export type __OnlineGame_X__CheckPsyNetConnection_0x1___OnlineGame_X__CheckPsyNe
|
|
|
1183
1168
|
Auth: UOnlinePlayerAuthentication_X; // 0x0000 (0x0008) [UOnlinePlayerAuthentication_X*] [CPF_Parm]
|
|
1184
1169
|
};
|
|
1185
1170
|
|
|
1171
|
+
/**
|
|
1172
|
+
* Function ProjectX.__OnlineGame_X__CheckPsyNetConnection_0x1.__OnlineGame_X__CheckPsyNetConnection_0x2
|
|
1173
|
+
*/
|
|
1174
|
+
export type __OnlineGame_X__CheckPsyNetConnection_0x1___OnlineGame_X__CheckPsyNetConnection_0x2_Params = {
|
|
1175
|
+
Auth: UOnlinePlayerAuthentication_X; // 0x0000 (0x0008) [UOnlinePlayerAuthentication_X*] [CPF_Parm]
|
|
1176
|
+
};
|
|
1177
|
+
|
|
1186
1178
|
/**
|
|
1187
1179
|
* Function ProjectX.__OnlineGame_X__GetOnlinePlayerFromEpicId_0x1.__OnlineGame_X__GetOnlinePlayerFromEpicId_0x1
|
|
1188
1180
|
*/
|
|
@@ -1202,11 +1194,10 @@ export type __OnlineGame_X__GetOnlinePlayerFromPlayerId_0x1___OnlineGame_X__GetO
|
|
|
1202
1194
|
/**
|
|
1203
1195
|
* Function ProjectX.__OnlineGameMatchmaking_X__AddRecommendedServers_0x1.__OnlineGameMatchmaking_X__AddRecommendedServers_0x1
|
|
1204
1196
|
*/
|
|
1205
|
-
export type __OnlineGameMatchmaking_X__AddRecommendedServers_0x1___OnlineGameMatchmaking_X__AddRecommendedServers_0x1_Params =
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
};
|
|
1197
|
+
export type __OnlineGameMatchmaking_X__AddRecommendedServers_0x1___OnlineGameMatchmaking_X__AddRecommendedServers_0x1_Params = {
|
|
1198
|
+
R: URegionPing_X; // 0x0000 (0x0008) [URegionPing_X*] [CPF_Parm]
|
|
1199
|
+
ReturnValue: boolean; // 0x0008 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
1200
|
+
};
|
|
1210
1201
|
|
|
1211
1202
|
/**
|
|
1212
1203
|
* Function ProjectX.__OnlineGameMatchmaking_X__GetSubRegionPings_0x1.__OnlineGameMatchmaking_X__GetSubRegionPings_0x1
|
|
@@ -1219,11 +1210,10 @@ export type __OnlineGameMatchmaking_X__GetSubRegionPings_0x1___OnlineGameMatchma
|
|
|
1219
1210
|
/**
|
|
1220
1211
|
* Function ProjectX.__OnlineGameMatchmaking_X__OnReceiveGameServer_0x1.__OnlineGameMatchmaking_X__OnReceiveGameServer_0x1
|
|
1221
1212
|
*/
|
|
1222
|
-
export type __OnlineGameMatchmaking_X__OnReceiveGameServer_0x1___OnlineGameMatchmaking_X__OnReceiveGameServer_0x1_Params =
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
};
|
|
1213
|
+
export type __OnlineGameMatchmaking_X__OnReceiveGameServer_0x1___OnlineGameMatchmaking_X__OnReceiveGameServer_0x1_Params = {
|
|
1214
|
+
R: FDSRegionInfo; // 0x0000 (0x0018) [FDSRegionInfo] [CPF_Parm]
|
|
1215
|
+
ReturnValue: boolean; // 0x0018 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
1216
|
+
};
|
|
1227
1217
|
|
|
1228
1218
|
/**
|
|
1229
1219
|
* Function ProjectX.__OnlineGameMatchmaking_X__RecordStart_0x2.__OnlineGameMatchmaking_X__RecordStart_0x2
|
|
@@ -1236,11 +1226,10 @@ export type __OnlineGameMatchmaking_X__RecordStart_0x2___OnlineGameMatchmaking_X
|
|
|
1236
1226
|
/**
|
|
1237
1227
|
* Function ProjectX.__OnlineGameParty_X__BroadcastAllLocalPlayers_0x2.__OnlineGameParty_X__BroadcastAllLocalPlayers_0x2
|
|
1238
1228
|
*/
|
|
1239
|
-
export type __OnlineGameParty_X__BroadcastAllLocalPlayers_0x2___OnlineGameParty_X__BroadcastAllLocalPlayers_0x2_Params =
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
};
|
|
1229
|
+
export type __OnlineGameParty_X__BroadcastAllLocalPlayers_0x2___OnlineGameParty_X__BroadcastAllLocalPlayers_0x2_Params = {
|
|
1230
|
+
PM: FPartyMember; // 0x0000 (0x0180) [FPartyMember] [CPF_Parm]
|
|
1231
|
+
ReturnValue: boolean; // 0x0180 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
1232
|
+
};
|
|
1244
1233
|
|
|
1245
1234
|
/**
|
|
1246
1235
|
* Function ProjectX.__OnlineGameParty_X__CreatePartyInternal_0x1.__OnlineGameParty_X__CreatePartyInternal_0x1
|
|
@@ -1252,17 +1241,15 @@ export type __OnlineGameParty_X__CreatePartyInternal_0x1___OnlineGameParty_X__Cr
|
|
|
1252
1241
|
/**
|
|
1253
1242
|
* Function ProjectX.__OnlineGameParty_X__GetPlayersWithPrimaryMemberID_0x1.__OnlineGameParty_X__GetPlayersWithPrimaryMemberID_0x1
|
|
1254
1243
|
*/
|
|
1255
|
-
export type __OnlineGameParty_X__GetPlayersWithPrimaryMemberID_0x1___OnlineGameParty_X__GetPlayersWithPrimaryMemberID_0x1_Params =
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
};
|
|
1244
|
+
export type __OnlineGameParty_X__GetPlayersWithPrimaryMemberID_0x1___OnlineGameParty_X__GetPlayersWithPrimaryMemberID_0x1_Params = {
|
|
1245
|
+
Member: FPartyMember; // 0x0000 (0x0180) [FPartyMember] [CPF_Parm]
|
|
1246
|
+
ReturnValue: boolean; // 0x0180 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
1247
|
+
};
|
|
1260
1248
|
|
|
1261
1249
|
/**
|
|
1262
1250
|
* Function ProjectX.__OnlineGameParty_X__HandleClientReservationMessage_0x1.__OnlineGameParty_X__HandleClientReservationMessage_0x1
|
|
1263
1251
|
*/
|
|
1264
|
-
export type __OnlineGameParty_X__HandleClientReservationMessage_0x1___OnlineGameParty_X__HandleClientReservationMessage_0x1_Params =
|
|
1265
|
-
{};
|
|
1252
|
+
export type __OnlineGameParty_X__HandleClientReservationMessage_0x1___OnlineGameParty_X__HandleClientReservationMessage_0x1_Params = {};
|
|
1266
1253
|
|
|
1267
1254
|
/**
|
|
1268
1255
|
* Function ProjectX.__OnlineGameParty_X__HandleConfirmJoinGame_0x1.__OnlineGameParty_X__HandleConfirmJoinGame_0x1
|
|
@@ -1272,10 +1259,9 @@ export type __OnlineGameParty_X__HandleConfirmJoinGame_0x1___OnlineGameParty_X__
|
|
|
1272
1259
|
/**
|
|
1273
1260
|
* Function ProjectX.__OnlineGameParty_X__HandleConfirmJoinGame_ConnectionValid_0x1.__OnlineGameParty_X__HandleConfirmJoinGame_ConnectionValid_0x1
|
|
1274
1261
|
*/
|
|
1275
|
-
export type __OnlineGameParty_X__HandleConfirmJoinGame_ConnectionValid_0x1___OnlineGameParty_X__HandleConfirmJoinGame_ConnectionValid_0x1_Params =
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
};
|
|
1262
|
+
export type __OnlineGameParty_X__HandleConfirmJoinGame_ConnectionValid_0x1___OnlineGameParty_X__HandleConfirmJoinGame_ConnectionValid_0x1_Params = {
|
|
1263
|
+
Reservation: FServerReservationData; // 0x0000 (0x0070) [FServerReservationData] [CPF_Parm]
|
|
1264
|
+
};
|
|
1279
1265
|
|
|
1280
1266
|
/**
|
|
1281
1267
|
* Function ProjectX.__OnlineGameParty_X__HasMultiplePlatforms_0x1.__OnlineGameParty_X__HasMultiplePlatforms_0x1
|
|
@@ -1304,27 +1290,32 @@ export type __OnlineGameParty_X__UpdatePartyInfo_0x1___OnlineGameParty_X__Update
|
|
|
1304
1290
|
/**
|
|
1305
1291
|
* Function ProjectX.__OnlineGameReservations_X__GetMigrationReservationData_0x1.__OnlineGameReservations_X__GetMigrationReservationData_0x1
|
|
1306
1292
|
*/
|
|
1307
|
-
export type __OnlineGameReservations_X__GetMigrationReservationData_0x1___OnlineGameReservations_X__GetMigrationReservationData_0x1_Params =
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
};
|
|
1293
|
+
export type __OnlineGameReservations_X__GetMigrationReservationData_0x1___OnlineGameReservations_X__GetMigrationReservationData_0x1_Params = {
|
|
1294
|
+
P: FReservationData; // 0x0000 (0x0110) [FReservationData] [CPF_Parm]
|
|
1295
|
+
StructInitializer_0x1: FMigrationReservationData; // 0x0110 (0x0108) [FMigrationReservationData] [CPF_OutParm]
|
|
1296
|
+
};
|
|
1312
1297
|
|
|
1313
1298
|
/**
|
|
1314
1299
|
* Function ProjectX.__OnlineGameReservations_X__RecordReservation_0x1.__OnlineGameReservations_X__RecordReservation_0x1
|
|
1315
1300
|
*/
|
|
1316
|
-
export type __OnlineGameReservations_X__RecordReservation_0x1___OnlineGameReservations_X__RecordReservation_0x1_Params =
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
};
|
|
1301
|
+
export type __OnlineGameReservations_X__RecordReservation_0x1___OnlineGameReservations_X__RecordReservation_0x1_Params = {
|
|
1302
|
+
P: FReservationPlayerData; // 0x0000 (0x00a0) [FReservationPlayerData] [CPF_Parm]
|
|
1303
|
+
};
|
|
1320
1304
|
|
|
1321
1305
|
/**
|
|
1322
1306
|
* Function ProjectX.__OnlineGameReservations_X__SetPlayersWithMigrationData_0x2.__OnlineGameReservations_X__SetPlayersWithMigrationData_0x2
|
|
1323
1307
|
*/
|
|
1324
|
-
export type __OnlineGameReservations_X__SetPlayersWithMigrationData_0x2___OnlineGameReservations_X__SetPlayersWithMigrationData_0x2_Params =
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1308
|
+
export type __OnlineGameReservations_X__SetPlayersWithMigrationData_0x2___OnlineGameReservations_X__SetPlayersWithMigrationData_0x2_Params = {
|
|
1309
|
+
P: FMigrationReservationData; // 0x0000 (0x0108) [FMigrationReservationData] [CPF_Parm]
|
|
1310
|
+
};
|
|
1311
|
+
|
|
1312
|
+
/**
|
|
1313
|
+
* Function ProjectX.__OnlineGameReservations_X__SetPlayersWithMigrationData_0x2.__OnlineGameReservations_X__SetPlayersWithMigrationData_0x3
|
|
1314
|
+
*/
|
|
1315
|
+
export type __OnlineGameReservations_X__SetPlayersWithMigrationData_0x2___OnlineGameReservations_X__SetPlayersWithMigrationData_0x3_Params = {
|
|
1316
|
+
P: FReservationData; // 0x0000 (0x0110) [FReservationData] [CPF_Parm]
|
|
1317
|
+
ReturnValue: boolean; // 0x0110 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
1318
|
+
};
|
|
1328
1319
|
|
|
1329
1320
|
/**
|
|
1330
1321
|
* Function ProjectX.__OnlineGameSkill_X__ClearPartyMembersSkill_0x1.__OnlineGameSkill_X__ClearPartyMembersSkill_0x1
|
|
@@ -1386,10 +1377,9 @@ export type __OnlineLegalTextEOS_X__RequestKey_0x1___OnlineLegalTextEOS_X__Reque
|
|
|
1386
1377
|
/**
|
|
1387
1378
|
* Function ProjectX.__OnlinePlayerFriends_X__AcceptEpicFriendInvite_0x1.__OnlinePlayerFriends_X__AcceptEpicFriendInvite_0x1
|
|
1388
1379
|
*/
|
|
1389
|
-
export type __OnlinePlayerFriends_X__AcceptEpicFriendInvite_0x1___OnlinePlayerFriends_X__AcceptEpicFriendInvite_0x1_Params =
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
};
|
|
1380
|
+
export type __OnlinePlayerFriends_X__AcceptEpicFriendInvite_0x1___OnlinePlayerFriends_X__AcceptEpicFriendInvite_0x1_Params = {
|
|
1381
|
+
Plugin: UEpicFriendsPlugin_X; // 0x0000 (0x0008) [UEpicFriendsPlugin_X*] [CPF_Parm]
|
|
1382
|
+
};
|
|
1393
1383
|
|
|
1394
1384
|
/**
|
|
1395
1385
|
* Function ProjectX.__OnlinePlayerFriends_X__BlockPlayer_0x1.__OnlinePlayerFriends_X__BlockPlayer_0x1
|
|
@@ -1402,10 +1392,9 @@ export type __OnlinePlayerFriends_X__BlockPlayer_0x1___OnlinePlayerFriends_X__Bl
|
|
|
1402
1392
|
/**
|
|
1403
1393
|
* Function ProjectX.__OnlinePlayerFriends_X__DeclineEpicFriendInvite_0x1.__OnlinePlayerFriends_X__DeclineEpicFriendInvite_0x1
|
|
1404
1394
|
*/
|
|
1405
|
-
export type __OnlinePlayerFriends_X__DeclineEpicFriendInvite_0x1___OnlinePlayerFriends_X__DeclineEpicFriendInvite_0x1_Params =
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
};
|
|
1395
|
+
export type __OnlinePlayerFriends_X__DeclineEpicFriendInvite_0x1___OnlinePlayerFriends_X__DeclineEpicFriendInvite_0x1_Params = {
|
|
1396
|
+
Plugin: UEpicFriendsPlugin_X; // 0x0000 (0x0008) [UEpicFriendsPlugin_X*] [CPF_Parm]
|
|
1397
|
+
};
|
|
1409
1398
|
|
|
1410
1399
|
/**
|
|
1411
1400
|
* Function ProjectX.__OnlinePlayerFriends_X__InviteEpicFriend_0x1.__OnlinePlayerFriends_X__InviteEpicFriend_0x1
|
|
@@ -1432,17 +1421,15 @@ export type __OnlinePlayerFriends_X__RemoveEpicFriend_0x1___OnlinePlayerFriends_
|
|
|
1432
1421
|
/**
|
|
1433
1422
|
* Function ProjectX.__OnlinePlayerFriends_X__SubscribeToEpicFriendsPlugin_0x1.__OnlinePlayerFriends_X__SubscribeToEpicFriendsPlugin_0x1
|
|
1434
1423
|
*/
|
|
1435
|
-
export type __OnlinePlayerFriends_X__SubscribeToEpicFriendsPlugin_0x1___OnlinePlayerFriends_X__SubscribeToEpicFriendsPlugin_0x1_Params =
|
|
1436
|
-
{};
|
|
1424
|
+
export type __OnlinePlayerFriends_X__SubscribeToEpicFriendsPlugin_0x1___OnlinePlayerFriends_X__SubscribeToEpicFriendsPlugin_0x1_Params = {};
|
|
1437
1425
|
|
|
1438
1426
|
/**
|
|
1439
1427
|
* Function ProjectX.__OnlinePlayerFriends_X__TriggerSocialCallback_0x1.__OnlinePlayerFriends_X__TriggerSocialCallback_0x1
|
|
1440
1428
|
*/
|
|
1441
|
-
export type __OnlinePlayerFriends_X__TriggerSocialCallback_0x1___OnlinePlayerFriends_X__TriggerSocialCallback_0x1_Params =
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
};
|
|
1429
|
+
export type __OnlinePlayerFriends_X__TriggerSocialCallback_0x1___OnlinePlayerFriends_X__TriggerSocialCallback_0x1_Params = {
|
|
1430
|
+
Element: FEpicSocialTaskData; // 0x0000 (0x0060) [FEpicSocialTaskData] [CPF_Parm]
|
|
1431
|
+
ReturnValue: boolean; // 0x0060 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
1432
|
+
};
|
|
1446
1433
|
|
|
1447
1434
|
/**
|
|
1448
1435
|
* Function ProjectX.__OnlinePlayerFriends_X__UnblockPlayer_0x1.__OnlinePlayerFriends_X__UnblockPlayer_0x1
|
|
@@ -1455,31 +1442,28 @@ export type __OnlinePlayerFriends_X__UnblockPlayer_0x1___OnlinePlayerFriends_X__
|
|
|
1455
1442
|
/**
|
|
1456
1443
|
* Function ProjectX.__OnlinePlayerStorageQueue_X__GetStorageMaxSizeBytes_0x1.__OnlinePlayerStorageQueue_X__GetStorageMaxSizeBytes_0x1
|
|
1457
1444
|
*/
|
|
1458
|
-
export type __OnlinePlayerStorageQueue_X__GetStorageMaxSizeBytes_0x1___OnlinePlayerStorageQueue_X__GetStorageMaxSizeBytes_0x1_Params =
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
};
|
|
1445
|
+
export type __OnlinePlayerStorageQueue_X__GetStorageMaxSizeBytes_0x1___OnlinePlayerStorageQueue_X__GetStorageMaxSizeBytes_0x1_Params = {
|
|
1446
|
+
C: FStorageMaxSize; // 0x0000 (0x000c) [FStorageMaxSize] [CPF_Parm]
|
|
1447
|
+
ReturnValue: boolean; // 0x000c (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
1448
|
+
};
|
|
1463
1449
|
|
|
1464
1450
|
/**
|
|
1465
1451
|
* Function ProjectX.__OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x2.__OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x2
|
|
1466
1452
|
*/
|
|
1467
|
-
export type __OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x2___OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x2_Params =
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
};
|
|
1453
|
+
export type __OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x2___OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x2_Params = {
|
|
1454
|
+
R: FSetPlayerStorageRequestItem; // 0x0000 (0x0028) [FSetPlayerStorageRequestItem] [CPF_Parm]
|
|
1455
|
+
ReturnValue: boolean; // 0x0028 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
1456
|
+
};
|
|
1472
1457
|
|
|
1473
1458
|
/**
|
|
1474
1459
|
* Function ProjectX.__OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x2.__OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x4
|
|
1475
1460
|
*/
|
|
1476
|
-
export type __OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x2___OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x4_Params =
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
};
|
|
1461
|
+
export type __OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x2___OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x4_Params = {
|
|
1462
|
+
R: FSetPlayerStorageResultItem; // 0x0000 (0x0010) [FSetPlayerStorageResultItem] [CPF_Parm]
|
|
1463
|
+
PendingIndex: number; // 0x0010 (0x0004) [int32]
|
|
1464
|
+
_0x1: U____OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x2____OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x4_0x1; // 0x0018 (0x0008) [U____OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x2____OnlinePlayerStorageQueue_X__HandleStorageSuccess_0x4_0x1*]
|
|
1465
|
+
RequestIndex: number; // 0x0020 (0x0004) [int32]
|
|
1466
|
+
};
|
|
1483
1467
|
|
|
1484
1468
|
/**
|
|
1485
1469
|
* Function ProjectX.__OnlinePlayerStorageQueue_X__MapResultItem_0x1.__OnlinePlayerStorageQueue_X__MapResultItem_0x1
|
|
@@ -1526,29 +1510,30 @@ export type __PartySequence_CreateParty_X__CreateParty_0x1___PartySequence_Creat
|
|
|
1526
1510
|
/**
|
|
1527
1511
|
* Function ProjectX.__PartySequence_InvitedToPlatformParty_X__HandlePlayerInvited_0x1.__PartySequence_InvitedToPlatformParty_X__HandlePlayerInvited_0x1
|
|
1528
1512
|
*/
|
|
1529
|
-
export type __PartySequence_InvitedToPlatformParty_X__HandlePlayerInvited_0x1___PartySequence_InvitedToPlatformParty_X__HandlePlayerInvited_0x1_Params =
|
|
1530
|
-
{};
|
|
1513
|
+
export type __PartySequence_InvitedToPlatformParty_X__HandlePlayerInvited_0x1___PartySequence_InvitedToPlatformParty_X__HandlePlayerInvited_0x1_Params = {};
|
|
1531
1514
|
|
|
1532
1515
|
/**
|
|
1533
1516
|
* Function ProjectX.__PartySequence_InvitedToPsyNetParty_X__HandlePlayerInvitedPrompt_0x1.__PartySequence_InvitedToPsyNetParty_X__HandlePlayerInvitedPrompt_0x1
|
|
1534
1517
|
*/
|
|
1535
|
-
export type __PartySequence_InvitedToPsyNetParty_X__HandlePlayerInvitedPrompt_0x1___PartySequence_InvitedToPsyNetParty_X__HandlePlayerInvitedPrompt_0x1_Params =
|
|
1536
|
-
{};
|
|
1518
|
+
export type __PartySequence_InvitedToPsyNetParty_X__HandlePlayerInvitedPrompt_0x1___PartySequence_InvitedToPsyNetParty_X__HandlePlayerInvitedPrompt_0x1_Params = {};
|
|
1537
1519
|
|
|
1538
1520
|
/**
|
|
1539
1521
|
* Function ProjectX.__PartySequence_InvitedToPsyNetParty_X__HandlePlayerInvitedSilent_0x1.__PartySequence_InvitedToPsyNetParty_X__HandlePlayerInvitedSilent_0x1
|
|
1540
1522
|
*/
|
|
1541
|
-
export type __PartySequence_InvitedToPsyNetParty_X__HandlePlayerInvitedSilent_0x1___PartySequence_InvitedToPsyNetParty_X__HandlePlayerInvitedSilent_0x1_Params =
|
|
1542
|
-
{};
|
|
1523
|
+
export type __PartySequence_InvitedToPsyNetParty_X__HandlePlayerInvitedSilent_0x1___PartySequence_InvitedToPsyNetParty_X__HandlePlayerInvitedSilent_0x1_Params = {};
|
|
1543
1524
|
|
|
1544
1525
|
/**
|
|
1545
1526
|
* Function ProjectX.__PartySequence_JoinParty_X__HandleGetPlatformPartyMessage_0x1.__PartySequence_JoinParty_X__HandleGetPlatformPartyMessage_0x1
|
|
1546
1527
|
*/
|
|
1547
|
-
export type __PartySequence_JoinParty_X__HandleGetPlatformPartyMessage_0x1___PartySequence_JoinParty_X__HandleGetPlatformPartyMessage_0x1_Params =
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1528
|
+
export type __PartySequence_JoinParty_X__HandleGetPlatformPartyMessage_0x1___PartySequence_JoinParty_X__HandleGetPlatformPartyMessage_0x1_Params = {
|
|
1529
|
+
M: FPartyMember; // 0x0000 (0x0180) [FPartyMember] [CPF_Parm]
|
|
1530
|
+
ReturnValue: boolean; // 0x0180 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
1531
|
+
};
|
|
1532
|
+
|
|
1533
|
+
/**
|
|
1534
|
+
* Function ProjectX.__PlayerController_X__CloseConnectionWithReason_0x1.__PlayerController_X__CloseConnectionWithReason_0x1
|
|
1535
|
+
*/
|
|
1536
|
+
export type __PlayerController_X__CloseConnectionWithReason_0x1___PlayerController_X__CloseConnectionWithReason_0x1_Params = {};
|
|
1552
1537
|
|
|
1553
1538
|
/**
|
|
1554
1539
|
* Function ProjectX.__PRI_X__RegisterPlayerWithSession_0x1.__PRI_X__RegisterPlayerWithSession_0x1
|
|
@@ -1610,28 +1595,25 @@ export type __PsyNetServiceProvider_X__ExecuteRequest_0x1___PsyNetServiceProvide
|
|
|
1610
1595
|
/**
|
|
1611
1596
|
* Function ProjectX.__PsyNetServiceProvider_X__ExecuteServiceMessage_0x1.__PsyNetServiceProvider_X__ExecuteServiceMessage_0x1
|
|
1612
1597
|
*/
|
|
1613
|
-
export type __PsyNetServiceProvider_X__ExecuteServiceMessage_0x1___PsyNetServiceProvider_X__ExecuteServiceMessage_0x1_Params =
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
};
|
|
1598
|
+
export type __PsyNetServiceProvider_X__ExecuteServiceMessage_0x1___PsyNetServiceProvider_X__ExecuteServiceMessage_0x1_Params = {
|
|
1599
|
+
R: UPsyNetClientService_X; // 0x0000 (0x0008) [UPsyNetClientService_X*] [CPF_Parm]
|
|
1600
|
+
E: UError; // 0x0008 (0x0008) [UError*] [CPF_Parm]
|
|
1601
|
+
};
|
|
1618
1602
|
|
|
1619
1603
|
/**
|
|
1620
1604
|
* Function ProjectX.__PsyNetServiceProvider_X__ExecuteServiceMessage_0x1.__PsyNetServiceProvider_X__ExecuteServiceMessage_0x2
|
|
1621
1605
|
*/
|
|
1622
|
-
export type __PsyNetServiceProvider_X__ExecuteServiceMessage_0x1___PsyNetServiceProvider_X__ExecuteServiceMessage_0x2_Params =
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
};
|
|
1606
|
+
export type __PsyNetServiceProvider_X__ExecuteServiceMessage_0x1___PsyNetServiceProvider_X__ExecuteServiceMessage_0x2_Params = {
|
|
1607
|
+
Err: UError; // 0x0000 (0x0008) [UError*] [CPF_Parm]
|
|
1608
|
+
};
|
|
1626
1609
|
|
|
1627
1610
|
/**
|
|
1628
1611
|
* Function ProjectX.__PsyNetWordFilter_X__WordFilterSanitizeString_0x1.__PsyNetWordFilter_X__WordFilterSanitizeString_0x1
|
|
1629
1612
|
*/
|
|
1630
|
-
export type __PsyNetWordFilter_X__WordFilterSanitizeString_0x1___PsyNetWordFilter_X__WordFilterSanitizeString_0x1_Params =
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
};
|
|
1613
|
+
export type __PsyNetWordFilter_X__WordFilterSanitizeString_0x1___PsyNetWordFilter_X__WordFilterSanitizeString_0x1_Params = {
|
|
1614
|
+
P: URPC_FilterContent_X; // 0x0000 (0x0008) [URPC_FilterContent_X*] [CPF_Parm]
|
|
1615
|
+
ReturnValue: boolean; // 0x0008 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
1616
|
+
};
|
|
1635
1617
|
|
|
1636
1618
|
/**
|
|
1637
1619
|
* Function ProjectX.__RegionConfig_X__GetSubRegions_0x1.__RegionConfig_X__GetSubRegions_0x1
|
|
@@ -1651,11 +1633,10 @@ export type __RemoteAvatarPermissions_X__GetPermissions_0x1___RemoteAvatarPermis
|
|
|
1651
1633
|
/**
|
|
1652
1634
|
* Function ProjectX.__RemoteAvatarPermissions_X__SetAvatarPermission_0x1.__RemoteAvatarPermissions_X__SetAvatarPermission_0x1
|
|
1653
1635
|
*/
|
|
1654
|
-
export type __RemoteAvatarPermissions_X__SetAvatarPermission_0x1___RemoteAvatarPermissions_X__SetAvatarPermission_0x1_Params =
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
};
|
|
1636
|
+
export type __RemoteAvatarPermissions_X__SetAvatarPermission_0x1___RemoteAvatarPermissions_X__SetAvatarPermission_0x1_Params = {
|
|
1637
|
+
R: URemoteAvatarPermissionsRequest_X; // 0x0000 (0x0008) [URemoteAvatarPermissionsRequest_X*] [CPF_Parm]
|
|
1638
|
+
ReturnValue: boolean; // 0x0008 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
1639
|
+
};
|
|
1659
1640
|
|
|
1660
1641
|
/**
|
|
1661
1642
|
* Function ProjectX.__RPC_X__CreateTask_0x1.__RPC_X__CreateTask_0x1
|
|
@@ -1680,6 +1661,38 @@ export type __RPCQueue_X__CreateBatchSingleRPC_0x1___RPCQueue_X__CreateBatchSing
|
|
|
1680
1661
|
Error: UError; // 0x0008 (0x0008) [UError*] [CPF_Parm]
|
|
1681
1662
|
};
|
|
1682
1663
|
|
|
1664
|
+
/**
|
|
1665
|
+
* Function ProjectX.__ServerPlayerIdCache_X__GetEpicIdFromPlayerId_0x1.__ServerPlayerIdCache_X__GetEpicIdFromPlayerId_0x1
|
|
1666
|
+
*/
|
|
1667
|
+
export type __ServerPlayerIdCache_X__GetEpicIdFromPlayerId_0x1___ServerPlayerIdCache_X__GetEpicIdFromPlayerId_0x1_Params = {
|
|
1668
|
+
P: FPlayerIdLink; // 0x0000 (0x0068) [FPlayerIdLink] [CPF_Parm]
|
|
1669
|
+
ReturnValue: boolean; // 0x0068 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
1670
|
+
};
|
|
1671
|
+
|
|
1672
|
+
/**
|
|
1673
|
+
* Function ProjectX.__ServerPlayerIdCache_X__GetProductUserIdFromEpicId_0x1.__ServerPlayerIdCache_X__GetProductUserIdFromEpicId_0x1
|
|
1674
|
+
*/
|
|
1675
|
+
export type __ServerPlayerIdCache_X__GetProductUserIdFromEpicId_0x1___ServerPlayerIdCache_X__GetProductUserIdFromEpicId_0x1_Params = {
|
|
1676
|
+
P: FPlayerIdLink; // 0x0000 (0x0068) [FPlayerIdLink] [CPF_Parm]
|
|
1677
|
+
ReturnValue: boolean; // 0x0068 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
1678
|
+
};
|
|
1679
|
+
|
|
1680
|
+
/**
|
|
1681
|
+
* Function ProjectX.__ServerPlayerIdCache_X__GetProductUserIdFromPlayerId_0x1.__ServerPlayerIdCache_X__GetProductUserIdFromPlayerId_0x1
|
|
1682
|
+
*/
|
|
1683
|
+
export type __ServerPlayerIdCache_X__GetProductUserIdFromPlayerId_0x1___ServerPlayerIdCache_X__GetProductUserIdFromPlayerId_0x1_Params = {
|
|
1684
|
+
P: FPlayerIdLink; // 0x0000 (0x0068) [FPlayerIdLink] [CPF_Parm]
|
|
1685
|
+
ReturnValue: boolean; // 0x0068 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
1686
|
+
};
|
|
1687
|
+
|
|
1688
|
+
/**
|
|
1689
|
+
* Function ProjectX.__ServerPlayerIdCache_X__RegisterPlayer_0x1.__ServerPlayerIdCache_X__RegisterPlayer_0x1
|
|
1690
|
+
*/
|
|
1691
|
+
export type __ServerPlayerIdCache_X__RegisterPlayer_0x1___ServerPlayerIdCache_X__RegisterPlayer_0x1_Params = {
|
|
1692
|
+
P: FPlayerIdLink; // 0x0000 (0x0068) [FPlayerIdLink] [CPF_Parm]
|
|
1693
|
+
ReturnValue: boolean; // 0x0068 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
1694
|
+
};
|
|
1695
|
+
|
|
1683
1696
|
/**
|
|
1684
1697
|
* Function ProjectX.__ServerPlayerTracker_X__AddPlayer_0x1.__ServerPlayerTracker_X__AddPlayer_0x1
|
|
1685
1698
|
*/
|
|
@@ -1715,51 +1728,44 @@ export type __TAsyncResult__array_ClubInvite_X__Copy_0x1___TAsyncResult__array_C
|
|
|
1715
1728
|
/**
|
|
1716
1729
|
* Function ProjectX.__TAsyncResult__array_ClubInvite_X__NotifyOnResult_0x1.__TAsyncResult__array_ClubInvite_X__NotifyOnResult_0x1
|
|
1717
1730
|
*/
|
|
1718
|
-
export type __TAsyncResult__array_ClubInvite_X__NotifyOnResult_0x1___TAsyncResult__array_ClubInvite_X__NotifyOnResult_0x1_Params =
|
|
1719
|
-
{};
|
|
1731
|
+
export type __TAsyncResult__array_ClubInvite_X__NotifyOnResult_0x1___TAsyncResult__array_ClubInvite_X__NotifyOnResult_0x1_Params = {};
|
|
1720
1732
|
|
|
1721
1733
|
/**
|
|
1722
1734
|
* Function ProjectX.__TAsyncResult__array_ClubInvite_X__NotifyOnResultComplete_0x1.__TAsyncResult__array_ClubInvite_X__NotifyOnResultComplete_0x1
|
|
1723
1735
|
*/
|
|
1724
|
-
export type __TAsyncResult__array_ClubInvite_X__NotifyOnResultComplete_0x1___TAsyncResult__array_ClubInvite_X__NotifyOnResultComplete_0x1_Params =
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
};
|
|
1736
|
+
export type __TAsyncResult__array_ClubInvite_X__NotifyOnResultComplete_0x1___TAsyncResult__array_ClubInvite_X__NotifyOnResultComplete_0x1_Params = {
|
|
1737
|
+
Err: UError; // 0x0000 (0x0008) [UError*] [CPF_Parm]
|
|
1738
|
+
};
|
|
1728
1739
|
|
|
1729
1740
|
/**
|
|
1730
1741
|
* Function ProjectX.__TAsyncResult__array_ClubInvite_X__SetResultWhen_0x1.__TAsyncResult__array_ClubInvite_X__SetResultWhen_0x1
|
|
1731
1742
|
*/
|
|
1732
|
-
export type __TAsyncResult__array_ClubInvite_X__SetResultWhen_0x1___TAsyncResult__array_ClubInvite_X__SetResultWhen_0x1_Params =
|
|
1733
|
-
{};
|
|
1743
|
+
export type __TAsyncResult__array_ClubInvite_X__SetResultWhen_0x1___TAsyncResult__array_ClubInvite_X__SetResultWhen_0x1_Params = {};
|
|
1734
1744
|
|
|
1735
1745
|
/**
|
|
1736
1746
|
* Function ProjectX.__TAsyncResult__array_LanServerRecord_X__Copy_0x1.__TAsyncResult__array_LanServerRecord_X__Copy_0x1
|
|
1737
1747
|
*/
|
|
1738
|
-
export type __TAsyncResult__array_LanServerRecord_X__Copy_0x1___TAsyncResult__array_LanServerRecord_X__Copy_0x1_Params =
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
};
|
|
1748
|
+
export type __TAsyncResult__array_LanServerRecord_X__Copy_0x1___TAsyncResult__array_LanServerRecord_X__Copy_0x1_Params = {
|
|
1749
|
+
R: ULanServerRecord_X[]; // 0x0000 (0x0010) [TArray<ULanServerRecord_X*>] [CPF_Parm]
|
|
1750
|
+
E: UError; // 0x0010 (0x0008) [UError*] [CPF_Parm]
|
|
1751
|
+
};
|
|
1743
1752
|
|
|
1744
1753
|
/**
|
|
1745
1754
|
* Function ProjectX.__TAsyncResult__array_LanServerRecord_X__NotifyOnResult_0x1.__TAsyncResult__array_LanServerRecord_X__NotifyOnResult_0x1
|
|
1746
1755
|
*/
|
|
1747
|
-
export type __TAsyncResult__array_LanServerRecord_X__NotifyOnResult_0x1___TAsyncResult__array_LanServerRecord_X__NotifyOnResult_0x1_Params =
|
|
1748
|
-
{};
|
|
1756
|
+
export type __TAsyncResult__array_LanServerRecord_X__NotifyOnResult_0x1___TAsyncResult__array_LanServerRecord_X__NotifyOnResult_0x1_Params = {};
|
|
1749
1757
|
|
|
1750
1758
|
/**
|
|
1751
1759
|
* Function ProjectX.__TAsyncResult__array_LanServerRecord_X__NotifyOnResultComplete_0x1.__TAsyncResult__array_LanServerRecord_X__NotifyOnResultComplete_0x1
|
|
1752
1760
|
*/
|
|
1753
|
-
export type __TAsyncResult__array_LanServerRecord_X__NotifyOnResultComplete_0x1___TAsyncResult__array_LanServerRecord_X__NotifyOnResultComplete_0x1_Params =
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
};
|
|
1761
|
+
export type __TAsyncResult__array_LanServerRecord_X__NotifyOnResultComplete_0x1___TAsyncResult__array_LanServerRecord_X__NotifyOnResultComplete_0x1_Params = {
|
|
1762
|
+
Err: UError; // 0x0000 (0x0008) [UError*] [CPF_Parm]
|
|
1763
|
+
};
|
|
1757
1764
|
|
|
1758
1765
|
/**
|
|
1759
1766
|
* Function ProjectX.__TAsyncResult__array_LanServerRecord_X__SetResultWhen_0x1.__TAsyncResult__array_LanServerRecord_X__SetResultWhen_0x1
|
|
1760
1767
|
*/
|
|
1761
|
-
export type __TAsyncResult__array_LanServerRecord_X__SetResultWhen_0x1___TAsyncResult__array_LanServerRecord_X__SetResultWhen_0x1_Params =
|
|
1762
|
-
{};
|
|
1768
|
+
export type __TAsyncResult__array_LanServerRecord_X__SetResultWhen_0x1___TAsyncResult__array_LanServerRecord_X__SetResultWhen_0x1_Params = {};
|
|
1763
1769
|
|
|
1764
1770
|
/**
|
|
1765
1771
|
* Function ProjectX.__TAsyncResult__ClubDetails_X__Copy_0x1.__TAsyncResult__ClubDetails_X__Copy_0x1
|
|
@@ -1772,22 +1778,19 @@ export type __TAsyncResult__ClubDetails_X__Copy_0x1___TAsyncResult__ClubDetails_
|
|
|
1772
1778
|
/**
|
|
1773
1779
|
* Function ProjectX.__TAsyncResult__ClubDetails_X__NotifyOnResult_0x1.__TAsyncResult__ClubDetails_X__NotifyOnResult_0x1
|
|
1774
1780
|
*/
|
|
1775
|
-
export type __TAsyncResult__ClubDetails_X__NotifyOnResult_0x1___TAsyncResult__ClubDetails_X__NotifyOnResult_0x1_Params =
|
|
1776
|
-
{};
|
|
1781
|
+
export type __TAsyncResult__ClubDetails_X__NotifyOnResult_0x1___TAsyncResult__ClubDetails_X__NotifyOnResult_0x1_Params = {};
|
|
1777
1782
|
|
|
1778
1783
|
/**
|
|
1779
1784
|
* Function ProjectX.__TAsyncResult__ClubDetails_X__NotifyOnResultComplete_0x1.__TAsyncResult__ClubDetails_X__NotifyOnResultComplete_0x1
|
|
1780
1785
|
*/
|
|
1781
|
-
export type __TAsyncResult__ClubDetails_X__NotifyOnResultComplete_0x1___TAsyncResult__ClubDetails_X__NotifyOnResultComplete_0x1_Params =
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
};
|
|
1786
|
+
export type __TAsyncResult__ClubDetails_X__NotifyOnResultComplete_0x1___TAsyncResult__ClubDetails_X__NotifyOnResultComplete_0x1_Params = {
|
|
1787
|
+
Err: UError; // 0x0000 (0x0008) [UError*] [CPF_Parm]
|
|
1788
|
+
};
|
|
1785
1789
|
|
|
1786
1790
|
/**
|
|
1787
1791
|
* Function ProjectX.__TAsyncResult__ClubDetails_X__SetResultWhen_0x1.__TAsyncResult__ClubDetails_X__SetResultWhen_0x1
|
|
1788
1792
|
*/
|
|
1789
|
-
export type __TAsyncResult__ClubDetails_X__SetResultWhen_0x1___TAsyncResult__ClubDetails_X__SetResultWhen_0x1_Params =
|
|
1790
|
-
{};
|
|
1793
|
+
export type __TAsyncResult__ClubDetails_X__SetResultWhen_0x1___TAsyncResult__ClubDetails_X__SetResultWhen_0x1_Params = {};
|
|
1791
1794
|
|
|
1792
1795
|
/**
|
|
1793
1796
|
* Function ProjectX.__TAsyncResult__PsyNetClientService_X__Copy_0x1.__TAsyncResult__PsyNetClientService_X__Copy_0x1
|
|
@@ -1800,22 +1803,19 @@ export type __TAsyncResult__PsyNetClientService_X__Copy_0x1___TAsyncResult__PsyN
|
|
|
1800
1803
|
/**
|
|
1801
1804
|
* Function ProjectX.__TAsyncResult__PsyNetClientService_X__NotifyOnResult_0x1.__TAsyncResult__PsyNetClientService_X__NotifyOnResult_0x1
|
|
1802
1805
|
*/
|
|
1803
|
-
export type __TAsyncResult__PsyNetClientService_X__NotifyOnResult_0x1___TAsyncResult__PsyNetClientService_X__NotifyOnResult_0x1_Params =
|
|
1804
|
-
{};
|
|
1806
|
+
export type __TAsyncResult__PsyNetClientService_X__NotifyOnResult_0x1___TAsyncResult__PsyNetClientService_X__NotifyOnResult_0x1_Params = {};
|
|
1805
1807
|
|
|
1806
1808
|
/**
|
|
1807
1809
|
* Function ProjectX.__TAsyncResult__PsyNetClientService_X__NotifyOnResultComplete_0x1.__TAsyncResult__PsyNetClientService_X__NotifyOnResultComplete_0x1
|
|
1808
1810
|
*/
|
|
1809
|
-
export type __TAsyncResult__PsyNetClientService_X__NotifyOnResultComplete_0x1___TAsyncResult__PsyNetClientService_X__NotifyOnResultComplete_0x1_Params =
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
};
|
|
1811
|
+
export type __TAsyncResult__PsyNetClientService_X__NotifyOnResultComplete_0x1___TAsyncResult__PsyNetClientService_X__NotifyOnResultComplete_0x1_Params = {
|
|
1812
|
+
Err: UError; // 0x0000 (0x0008) [UError*] [CPF_Parm]
|
|
1813
|
+
};
|
|
1813
1814
|
|
|
1814
1815
|
/**
|
|
1815
1816
|
* Function ProjectX.__TAsyncResult__PsyNetClientService_X__SetResultWhen_0x1.__TAsyncResult__PsyNetClientService_X__SetResultWhen_0x1
|
|
1816
1817
|
*/
|
|
1817
|
-
export type __TAsyncResult__PsyNetClientService_X__SetResultWhen_0x1___TAsyncResult__PsyNetClientService_X__SetResultWhen_0x1_Params =
|
|
1818
|
-
{};
|
|
1818
|
+
export type __TAsyncResult__PsyNetClientService_X__SetResultWhen_0x1___TAsyncResult__PsyNetClientService_X__SetResultWhen_0x1_Params = {};
|
|
1819
1819
|
|
|
1820
1820
|
/**
|
|
1821
1821
|
* Function ProjectX.__TAsyncResult__PsyNetMessage_X__Copy_0x1.__TAsyncResult__PsyNetMessage_X__Copy_0x1
|
|
@@ -1828,22 +1828,19 @@ export type __TAsyncResult__PsyNetMessage_X__Copy_0x1___TAsyncResult__PsyNetMess
|
|
|
1828
1828
|
/**
|
|
1829
1829
|
* Function ProjectX.__TAsyncResult__PsyNetMessage_X__NotifyOnResult_0x1.__TAsyncResult__PsyNetMessage_X__NotifyOnResult_0x1
|
|
1830
1830
|
*/
|
|
1831
|
-
export type __TAsyncResult__PsyNetMessage_X__NotifyOnResult_0x1___TAsyncResult__PsyNetMessage_X__NotifyOnResult_0x1_Params =
|
|
1832
|
-
{};
|
|
1831
|
+
export type __TAsyncResult__PsyNetMessage_X__NotifyOnResult_0x1___TAsyncResult__PsyNetMessage_X__NotifyOnResult_0x1_Params = {};
|
|
1833
1832
|
|
|
1834
1833
|
/**
|
|
1835
1834
|
* Function ProjectX.__TAsyncResult__PsyNetMessage_X__NotifyOnResultComplete_0x1.__TAsyncResult__PsyNetMessage_X__NotifyOnResultComplete_0x1
|
|
1836
1835
|
*/
|
|
1837
|
-
export type __TAsyncResult__PsyNetMessage_X__NotifyOnResultComplete_0x1___TAsyncResult__PsyNetMessage_X__NotifyOnResultComplete_0x1_Params =
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
};
|
|
1836
|
+
export type __TAsyncResult__PsyNetMessage_X__NotifyOnResultComplete_0x1___TAsyncResult__PsyNetMessage_X__NotifyOnResultComplete_0x1_Params = {
|
|
1837
|
+
Err: UError; // 0x0000 (0x0008) [UError*] [CPF_Parm]
|
|
1838
|
+
};
|
|
1841
1839
|
|
|
1842
1840
|
/**
|
|
1843
1841
|
* Function ProjectX.__TAsyncResult__PsyNetMessage_X__SetResultWhen_0x1.__TAsyncResult__PsyNetMessage_X__SetResultWhen_0x1
|
|
1844
1842
|
*/
|
|
1845
|
-
export type __TAsyncResult__PsyNetMessage_X__SetResultWhen_0x1___TAsyncResult__PsyNetMessage_X__SetResultWhen_0x1_Params =
|
|
1846
|
-
{};
|
|
1843
|
+
export type __TAsyncResult__PsyNetMessage_X__SetResultWhen_0x1___TAsyncResult__PsyNetMessage_X__SetResultWhen_0x1_Params = {};
|
|
1847
1844
|
|
|
1848
1845
|
/**
|
|
1849
1846
|
* Function ProjectX.__TAsyncResult__Texture2DDynamic__Copy_0x1.__TAsyncResult__Texture2DDynamic__Copy_0x1
|
|
@@ -1856,22 +1853,19 @@ export type __TAsyncResult__Texture2DDynamic__Copy_0x1___TAsyncResult__Texture2D
|
|
|
1856
1853
|
/**
|
|
1857
1854
|
* Function ProjectX.__TAsyncResult__Texture2DDynamic__NotifyOnResult_0x1.__TAsyncResult__Texture2DDynamic__NotifyOnResult_0x1
|
|
1858
1855
|
*/
|
|
1859
|
-
export type __TAsyncResult__Texture2DDynamic__NotifyOnResult_0x1___TAsyncResult__Texture2DDynamic__NotifyOnResult_0x1_Params =
|
|
1860
|
-
{};
|
|
1856
|
+
export type __TAsyncResult__Texture2DDynamic__NotifyOnResult_0x1___TAsyncResult__Texture2DDynamic__NotifyOnResult_0x1_Params = {};
|
|
1861
1857
|
|
|
1862
1858
|
/**
|
|
1863
1859
|
* Function ProjectX.__TAsyncResult__Texture2DDynamic__NotifyOnResultComplete_0x1.__TAsyncResult__Texture2DDynamic__NotifyOnResultComplete_0x1
|
|
1864
1860
|
*/
|
|
1865
|
-
export type __TAsyncResult__Texture2DDynamic__NotifyOnResultComplete_0x1___TAsyncResult__Texture2DDynamic__NotifyOnResultComplete_0x1_Params =
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
};
|
|
1861
|
+
export type __TAsyncResult__Texture2DDynamic__NotifyOnResultComplete_0x1___TAsyncResult__Texture2DDynamic__NotifyOnResultComplete_0x1_Params = {
|
|
1862
|
+
Err: UError; // 0x0000 (0x0008) [UError*] [CPF_Parm]
|
|
1863
|
+
};
|
|
1869
1864
|
|
|
1870
1865
|
/**
|
|
1871
1866
|
* Function ProjectX.__TAsyncResult__Texture2DDynamic__SetResultWhen_0x1.__TAsyncResult__Texture2DDynamic__SetResultWhen_0x1
|
|
1872
1867
|
*/
|
|
1873
|
-
export type __TAsyncResult__Texture2DDynamic__SetResultWhen_0x1___TAsyncResult__Texture2DDynamic__SetResultWhen_0x1_Params =
|
|
1874
|
-
{};
|
|
1868
|
+
export type __TAsyncResult__Texture2DDynamic__SetResultWhen_0x1___TAsyncResult__Texture2DDynamic__SetResultWhen_0x1_Params = {};
|
|
1875
1869
|
|
|
1876
1870
|
/**
|
|
1877
1871
|
* Function ProjectX.__TitleConfig_X__GetClubTitleData_0x1.__TitleConfig_X__GetClubTitleData_0x1
|
|
@@ -2552,6 +2546,14 @@ export type AnimNotify_PlayParticleEffect_X_OnParticleSystemFinished_Params = {
|
|
|
2552
2546
|
Component: UParticleSystemComponent; // 0x0000 (0x0008) [UParticleSystemComponent*] [CPF_Parm]
|
|
2553
2547
|
};
|
|
2554
2548
|
|
|
2549
|
+
/**
|
|
2550
|
+
* Function ProjectX.AntiCheatManager_X.GetAntiCheatError
|
|
2551
|
+
*/
|
|
2552
|
+
export type AntiCheatManager_X_GetAntiCheatError_Params = {
|
|
2553
|
+
PlaylistId: number; // 0x0000 (0x0004) [int32] [CPF_Parm]
|
|
2554
|
+
ReturnValue: UError; // 0x0008 (0x0008) [UError*] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
2555
|
+
};
|
|
2556
|
+
|
|
2555
2557
|
/**
|
|
2556
2558
|
* Function ProjectX.AppConfig_X.Apply
|
|
2557
2559
|
*/
|
|
@@ -3425,7 +3427,9 @@ export type CameraModifier_CameraShake_X_RemoveCameraShake_Params = {
|
|
|
3425
3427
|
/**
|
|
3426
3428
|
* Function ProjectX.CameraState_CamActor_X.BeginCameraState
|
|
3427
3429
|
*/
|
|
3428
|
-
export type CameraState_CamActor_X_BeginCameraState_Params = {
|
|
3430
|
+
export type CameraState_CamActor_X_BeginCameraState_Params = {
|
|
3431
|
+
PreviousState: UCameraState_X; // 0x0000 (0x0008) [UCameraState_X*] [CPF_Parm | CPF_OptionalParm]
|
|
3432
|
+
};
|
|
3429
3433
|
|
|
3430
3434
|
/**
|
|
3431
3435
|
* Function ProjectX.CameraState_CamActor_X.EndCameraState
|
|
@@ -3472,7 +3476,9 @@ export type CameraState_CamActorCinematic_X_UpdatePOV_Params = {
|
|
|
3472
3476
|
/**
|
|
3473
3477
|
* Function ProjectX.CameraState_X.BeginCameraState
|
|
3474
3478
|
*/
|
|
3475
|
-
export type CameraState_X_BeginCameraState_Params = {
|
|
3479
|
+
export type CameraState_X_BeginCameraState_Params = {
|
|
3480
|
+
PreviousState: UCameraState_X; // 0x0000 (0x0008) [UCameraState_X*] [CPF_Parm | CPF_OptionalParm]
|
|
3481
|
+
};
|
|
3476
3482
|
|
|
3477
3483
|
/**
|
|
3478
3484
|
* Function ProjectX.CameraState_X.EndCameraState
|
|
@@ -4298,6 +4304,22 @@ export type ClubUtil_X_AreColorsDifferent_Params = {
|
|
|
4298
4304
|
Pos1: FColorPosition; // 0x001c (0x0008) [FColorPosition]
|
|
4299
4305
|
};
|
|
4300
4306
|
|
|
4307
|
+
/**
|
|
4308
|
+
* Function ProjectX.ClubUtil_X.AreColorsDifferent2D
|
|
4309
|
+
*/
|
|
4310
|
+
export type ClubUtil_X_AreColorsDifferent2D_Params = {
|
|
4311
|
+
Palette: UColorPalette_X; // 0x0000 (0x0008) [UColorPalette_X*] [CPF_Parm]
|
|
4312
|
+
Color0: number; // 0x0008 (0x0004) [int32] [CPF_Parm]
|
|
4313
|
+
Color1: number; // 0x000c (0x0004) [int32] [CPF_Parm]
|
|
4314
|
+
ReturnValue: boolean; // 0x0010 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
4315
|
+
Pos0: FColorPosition; // 0x0014 (0x0008) [FColorPosition]
|
|
4316
|
+
Pos1: FColorPosition; // 0x001c (0x0008) [FColorPosition]
|
|
4317
|
+
bSameRow: boolean; // 0x0024 (0x0004) [bool : 0x1]
|
|
4318
|
+
bSameColumn: boolean; // 0x0028 (0x0004) [bool : 0x1]
|
|
4319
|
+
Value: number; // 0x002c (0x0004) [int32]
|
|
4320
|
+
Hue: number; // 0x0030 (0x0004) [int32]
|
|
4321
|
+
};
|
|
4322
|
+
|
|
4301
4323
|
/**
|
|
4302
4324
|
* Function ProjectX.ClubUtil_X.EnsureDifferentColors
|
|
4303
4325
|
*/
|
|
@@ -4337,6 +4359,15 @@ export type ClubUtil_X_IsClubTeam_Params = {
|
|
|
4337
4359
|
_0x1: U__ClubUtil_X__IsClubTeam_0x1; // 0x0018 (0x0008) [U__ClubUtil_X__IsClubTeam_0x1*]
|
|
4338
4360
|
};
|
|
4339
4361
|
|
|
4362
|
+
/**
|
|
4363
|
+
* Function ProjectX.ClubUtil_X.IsOneTeamGrayScale
|
|
4364
|
+
*/
|
|
4365
|
+
export type ClubUtil_X_IsOneTeamGrayScale_Params = {
|
|
4366
|
+
Pos0Column: number; // 0x0000 (0x0004) [int32] [CPF_Parm]
|
|
4367
|
+
Pos1Column: number; // 0x0004 (0x0004) [int32] [CPF_Parm]
|
|
4368
|
+
ReturnValue: boolean; // 0x0008 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
4369
|
+
};
|
|
4370
|
+
|
|
4340
4371
|
/**
|
|
4341
4372
|
* Function ProjectX.ClubUtil_X.SwapPrimaryAccentColors
|
|
4342
4373
|
*/
|
|
@@ -5506,15 +5537,6 @@ export type EpicFriendsPlugin_X___EpicFriendsPlugin_X__GetOutgoingFriendRequests
|
|
|
5506
5537
|
ResponseCode: number; // 0x0010 (0x0004) [int32] [CPF_Parm]
|
|
5507
5538
|
};
|
|
5508
5539
|
|
|
5509
|
-
/**
|
|
5510
|
-
* Function ProjectX.EpicFriendsPlugin_X.__EpicFriendsPlugin_X__Unblock_0x1
|
|
5511
|
-
*/
|
|
5512
|
-
export type EpicFriendsPlugin_X___EpicFriendsPlugin_X__Unblock_0x1_Params = {
|
|
5513
|
-
R: UEOS_ManageBlockListResponse; // 0x0000 (0x0008) [UEOS_ManageBlockListResponse*] [CPF_Parm]
|
|
5514
|
-
E: UError; // 0x0008 (0x0008) [UError*] [CPF_Parm]
|
|
5515
|
-
ResponseCode: number; // 0x0010 (0x0004) [int32] [CPF_Parm]
|
|
5516
|
-
};
|
|
5517
|
-
|
|
5518
5540
|
/**
|
|
5519
5541
|
* Function ProjectX.EpicFriendsPlugin_X.AcceptFriendRequest
|
|
5520
5542
|
*/
|
|
@@ -5772,6 +5794,10 @@ export type EpicFriendsPlugin_X_Unblock_Params = {
|
|
|
5772
5794
|
UserId: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId] [CPF_Parm]
|
|
5773
5795
|
ReturnValue: boolean; // 0x0048 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
5774
5796
|
URL: string; // 0x0050 (0x0010) [FString]
|
|
5797
|
+
ArrayInitializer_0x1: FHTTPRequestCapturedParam[]; // 0x0060 (0x0010) [TArray<FHTTPRequestCapturedParam>] [CPF_OutParm]
|
|
5798
|
+
StructInitializer_0x2: FHTTPRequestCapturedParam; // 0x0070 (0x0020) [FHTTPRequestCapturedParam] [CPF_OutParm]
|
|
5799
|
+
StructInitializer_0x3: FHTTPRequestCapturedParam; // 0x0090 (0x0020) [FHTTPRequestCapturedParam] [CPF_OutParm]
|
|
5800
|
+
_0x1: U__EpicFriendsPlugin_X__Unblock_0x1; // 0x00b0 (0x0008) [U__EpicFriendsPlugin_X__Unblock_0x1*]
|
|
5775
5801
|
};
|
|
5776
5802
|
|
|
5777
5803
|
/**
|
|
@@ -7957,6 +7983,15 @@ export type GFxDataStore_X_SetRowCount_Params = {
|
|
|
7957
7983
|
Count: number; // 0x0008 (0x0004) [int32] [CPF_Parm]
|
|
7958
7984
|
};
|
|
7959
7985
|
|
|
7986
|
+
/**
|
|
7987
|
+
* Function ProjectX.GFxDataStore_X.SetSQWordValue
|
|
7988
|
+
*/
|
|
7989
|
+
export type GFxDataStore_X_SetSQWordValue_Params = {
|
|
7990
|
+
Table: FName; // 0x0000 (0x0008) [FName] [CPF_Parm]
|
|
7991
|
+
Row: number; // 0x0008 (0x0004) [int32] [CPF_Parm]
|
|
7992
|
+
Column: FName; // 0x000c (0x0008) [FName] [CPF_Parm]
|
|
7993
|
+
};
|
|
7994
|
+
|
|
7960
7995
|
/**
|
|
7961
7996
|
* Function ProjectX.GFxDataStore_X.SetStringValue
|
|
7962
7997
|
*/
|
|
@@ -11356,6 +11391,7 @@ export type OnlineGame_X_CheckPsyNetConnection_Params = {
|
|
|
11356
11391
|
ConnectionError: UError; // 0x0008 (0x0008) [UError*]
|
|
11357
11392
|
_0x1: U__OnlineGame_X__CheckPsyNetConnection_0x1; // 0x0010 (0x0008) [U__OnlineGame_X__CheckPsyNetConnection_0x1*]
|
|
11358
11393
|
OnlinePlayer: UOnlinePlayer_X; // 0x0018 (0x0008) [UOnlinePlayer_X*]
|
|
11394
|
+
OPlayer: UOnlinePlayer_X; // 0x0020 (0x0008) [UOnlinePlayer_X*]
|
|
11359
11395
|
};
|
|
11360
11396
|
|
|
11361
11397
|
/**
|
|
@@ -11480,6 +11516,17 @@ export type OnlineGame_X_HandleLoginCompleted_Params = {
|
|
|
11480
11516
|
ConnectionError: UError; // 0x0010 (0x0008) [UError*]
|
|
11481
11517
|
};
|
|
11482
11518
|
|
|
11519
|
+
/**
|
|
11520
|
+
* Function ProjectX.OnlineGame_X.HandleOnlinePlayerLoginCompleted
|
|
11521
|
+
*/
|
|
11522
|
+
export type OnlineGame_X_HandleOnlinePlayerLoginCompleted_Params = {
|
|
11523
|
+
ActiveLoginAttemptPlayers: UOnlinePlayer_X[]; // 0x0000 (0x0010) [TArray<UOnlinePlayer_X*>] [CPF_Parm | CPF_OutParm]
|
|
11524
|
+
Task: UAsyncTask; // 0x0010 (0x0008) [UAsyncTask*] [CPF_Parm]
|
|
11525
|
+
bAnyLoginInProgress: boolean; // 0x0018 (0x0004) [bool : 0x1]
|
|
11526
|
+
OnlinePlayer: UOnlinePlayer_X; // 0x0020 (0x0008) [UOnlinePlayer_X*]
|
|
11527
|
+
ConnectionError: UError; // 0x0028 (0x0008) [UError*]
|
|
11528
|
+
};
|
|
11529
|
+
|
|
11483
11530
|
/**
|
|
11484
11531
|
* Function ProjectX.OnlineGame_X.HandlePlayerLogin
|
|
11485
11532
|
*/
|
|
@@ -11738,6 +11785,14 @@ export type OnlineGameAccount_X_SetPrimaryPlayer_Params = {
|
|
|
11738
11785
|
*/
|
|
11739
11786
|
export type OnlineGameAccount_X_UpdateCurrentGame_Params = {};
|
|
11740
11787
|
|
|
11788
|
+
/**
|
|
11789
|
+
* Function ProjectX.OnlineGameDedicatedServer_X.AllowMigrationMessageReconcile
|
|
11790
|
+
*/
|
|
11791
|
+
export type OnlineGameDedicatedServer_X_AllowMigrationMessageReconcile_Params = {
|
|
11792
|
+
Message: UMigrationStartedMessage_X; // 0x0000 (0x0008) [UMigrationStartedMessage_X*] [CPF_Parm]
|
|
11793
|
+
ReturnValue: boolean; // 0x0008 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
11794
|
+
};
|
|
11795
|
+
|
|
11741
11796
|
/**
|
|
11742
11797
|
* Function ProjectX.OnlineGameDedicatedServer_X.AllowPlayerLogin
|
|
11743
11798
|
*/
|
|
@@ -12324,10 +12379,9 @@ export type OnlineGameDedicatedServer_X_WaitForLogAttackDetected_Params = {};
|
|
|
12324
12379
|
/**
|
|
12325
12380
|
* Function ProjectX.OnlineGameDedicatedServerRegistration_X.__OnlineGameDedicatedServerRegistration_X__HandleCreateServerSucces_0x1
|
|
12326
12381
|
*/
|
|
12327
|
-
export type OnlineGameDedicatedServerRegistration_X___OnlineGameDedicatedServerRegistration_X__HandleCreateServerSucces_0x1_Params =
|
|
12328
|
-
|
|
12329
|
-
|
|
12330
|
-
};
|
|
12382
|
+
export type OnlineGameDedicatedServerRegistration_X___OnlineGameDedicatedServerRegistration_X__HandleCreateServerSucces_0x1_Params = {
|
|
12383
|
+
Timer: UCacheTimer_X; // 0x0000 (0x0008) [UCacheTimer_X*] [CPF_Parm]
|
|
12384
|
+
};
|
|
12331
12385
|
|
|
12332
12386
|
/**
|
|
12333
12387
|
* Function ProjectX.OnlineGameDedicatedServerRegistration_X.__OnlineGameDedicatedServerRegistration_X__OnInit_0x1
|
|
@@ -13726,6 +13780,13 @@ export type OnlineGameMatchmakingBase_X_EventFindGameStatus_Params = {
|
|
|
13726
13780
|
NewStatus: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
13727
13781
|
};
|
|
13728
13782
|
|
|
13783
|
+
/**
|
|
13784
|
+
* Function ProjectX.OnlineGameMatchmakingBase_X.EventGetMatchmakingDelaySecs
|
|
13785
|
+
*/
|
|
13786
|
+
export type OnlineGameMatchmakingBase_X_EventGetMatchmakingDelaySecs_Params = {
|
|
13787
|
+
ReturnValue: number; // 0x0000 (0x0004) [float] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
13788
|
+
};
|
|
13789
|
+
|
|
13729
13790
|
/**
|
|
13730
13791
|
* Function ProjectX.OnlineGameMatchmakingBase_X.GetMatchmakingStateName
|
|
13731
13792
|
*/
|
|
@@ -13798,6 +13859,11 @@ export type OnlineGameMatchmakingBase_X_PrivateMatchAllowsForDoubleQueue_Params
|
|
|
13798
13859
|
GRI: UGRI_X; // 0x0008 (0x0008) [UGRI_X*]
|
|
13799
13860
|
};
|
|
13800
13861
|
|
|
13862
|
+
/**
|
|
13863
|
+
* Function ProjectX.OnlineGameMatchmakingBase_X.StartSearchingAfterDelay
|
|
13864
|
+
*/
|
|
13865
|
+
export type OnlineGameMatchmakingBase_X_StartSearchingAfterDelay_Params = {};
|
|
13866
|
+
|
|
13801
13867
|
/**
|
|
13802
13868
|
* Function ProjectX.OnlineGameParty_X.__bTradeLocked__ChangeNotifyFunc
|
|
13803
13869
|
*/
|
|
@@ -14829,6 +14895,13 @@ export type OnlineGameParty_X_IsMemberLocal_Params = {
|
|
|
14829
14895
|
ReturnValue: boolean; // 0x0048 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
14830
14896
|
};
|
|
14831
14897
|
|
|
14898
|
+
/**
|
|
14899
|
+
* Function ProjectX.OnlineGameParty_X.IsPartyAntiCheatEnabled
|
|
14900
|
+
*/
|
|
14901
|
+
export type OnlineGameParty_X_IsPartyAntiCheatEnabled_Params = {
|
|
14902
|
+
ReturnValue: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
14903
|
+
};
|
|
14904
|
+
|
|
14832
14905
|
/**
|
|
14833
14906
|
* Function ProjectX.OnlineGameParty_X.IsPartyLeader
|
|
14834
14907
|
*/
|
|
@@ -15806,6 +15879,14 @@ export type OnlineGamePrivateMatch_X_UpdatePrivateMatchSettings_Params = {
|
|
|
15806
15879
|
*/
|
|
15807
15880
|
export type OnlineGamePrivateMatch_X_UpdateStatusMessage_Params = {};
|
|
15808
15881
|
|
|
15882
|
+
/**
|
|
15883
|
+
* Function ProjectX.OnlineGamePrivileges_X.AddAntiCheatCheck
|
|
15884
|
+
*/
|
|
15885
|
+
export type OnlineGamePrivileges_X_AddAntiCheatCheck_Params = {
|
|
15886
|
+
Check: UPrivilegeCheck_X; // 0x0000 (0x0008) [UPrivilegeCheck_X*] [CPF_Parm]
|
|
15887
|
+
ReturnValue: UPrivilegeCheck_X; // 0x0008 (0x0008) [UPrivilegeCheck_X*] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
15888
|
+
};
|
|
15889
|
+
|
|
15809
15890
|
/**
|
|
15810
15891
|
* Function ProjectX.OnlineGamePrivileges_X.AddPlayOnlineChecks
|
|
15811
15892
|
*/
|
|
@@ -15895,6 +15976,16 @@ export type OnlineGamePrivileges_X_TryToPlayOnlineAndUseUGC_Params = {
|
|
|
15895
15976
|
Check: UPrivilegeCheck_X; // 0x0020 (0x0008) [UPrivilegeCheck_X*]
|
|
15896
15977
|
};
|
|
15897
15978
|
|
|
15979
|
+
/**
|
|
15980
|
+
* Function ProjectX.OnlineGamePrivileges_X.TryToPlayOnlineWithAntiCheat
|
|
15981
|
+
*/
|
|
15982
|
+
export type OnlineGamePrivileges_X_TryToPlayOnlineWithAntiCheat_Params = {
|
|
15983
|
+
ControllerId: number; // 0x0000 (0x0004) [int32] [CPF_Parm]
|
|
15984
|
+
PlaylistId: number; // 0x0004 (0x0004) [int32] [CPF_Parm]
|
|
15985
|
+
Callback: FScriptDelegate; // 0x0008 (0x0018) [FScriptDelegate] [CPF_Parm]
|
|
15986
|
+
Check: UPrivilegeCheck_X; // 0x0020 (0x0008) [UPrivilegeCheck_X*]
|
|
15987
|
+
};
|
|
15988
|
+
|
|
15898
15989
|
/**
|
|
15899
15990
|
* Function ProjectX.OnlineGamePrivileges_X.TryToUsePsyNet
|
|
15900
15991
|
*/
|
|
@@ -16284,6 +16375,13 @@ export type OnlineGameReservations_X___OnlineGameReservations_X__HandlePsyNetBea
|
|
|
16284
16375
|
P: FPsyNetBeaconPlayerReservation; // 0x0000 (0x00b8) [FPsyNetBeaconPlayerReservation] [CPF_Parm]
|
|
16285
16376
|
};
|
|
16286
16377
|
|
|
16378
|
+
/**
|
|
16379
|
+
* Function ProjectX.OnlineGameReservations_X.__OnlineGameReservations_X__HandlePsyNetBeaconReservation_0x3
|
|
16380
|
+
*/
|
|
16381
|
+
export type OnlineGameReservations_X___OnlineGameReservations_X__HandlePsyNetBeaconReservation_0x3_Params = {
|
|
16382
|
+
P: FPsyNetBeaconPlayerReservation; // 0x0000 (0x00b8) [FPsyNetBeaconPlayerReservation] [CPF_Parm]
|
|
16383
|
+
};
|
|
16384
|
+
|
|
16287
16385
|
/**
|
|
16288
16386
|
* Function ProjectX.OnlineGameReservations_X.__OnlineGameReservations_X__HandlePublicReservation_0x1
|
|
16289
16387
|
*/
|
|
@@ -16731,6 +16829,8 @@ export type OnlineGameReservations_X_GetMetrics_Params = {
|
|
|
16731
16829
|
export type OnlineGameReservations_X_GetMigrationReservationData_Params = {
|
|
16732
16830
|
ReturnValue: FMigrationReservationData[]; // 0x0000 (0x0010) [TArray<FMigrationReservationData>] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
16733
16831
|
_0x1: U__OnlineGameReservations_X__GetMigrationReservationData_0x1; // 0x0010 (0x0008) [U__OnlineGameReservations_X__GetMigrationReservationData_0x1*]
|
|
16832
|
+
ResData: FMigrationReservationData; // 0x0018 (0x0108) [FMigrationReservationData]
|
|
16833
|
+
ForEachRefIndex_0x2: number; // 0x0120 (0x0004) [int32]
|
|
16734
16834
|
};
|
|
16735
16835
|
|
|
16736
16836
|
/**
|
|
@@ -16877,6 +16977,11 @@ export type OnlineGameReservations_X_HandleMigrationStartedMessage_Params = {
|
|
|
16877
16977
|
TeamSize: number; // 0x0008 (0x0004) [int32]
|
|
16878
16978
|
};
|
|
16879
16979
|
|
|
16980
|
+
/**
|
|
16981
|
+
* Function ProjectX.OnlineGameReservations_X.HandleMigrationTimeout
|
|
16982
|
+
*/
|
|
16983
|
+
export type OnlineGameReservations_X_HandleMigrationTimeout_Params = {};
|
|
16984
|
+
|
|
16880
16985
|
/**
|
|
16881
16986
|
* Function ProjectX.OnlineGameReservations_X.HandleNewGameReservation
|
|
16882
16987
|
*/
|
|
@@ -17152,6 +17257,11 @@ export type OnlineGameReservations_X_IsUnique_Params = {
|
|
|
17152
17257
|
*/
|
|
17153
17258
|
export type OnlineGameReservations_X_NotAllPlayersJoined_Params = {};
|
|
17154
17259
|
|
|
17260
|
+
/**
|
|
17261
|
+
* Function ProjectX.OnlineGameReservations_X.NotifyMigrationInfoReceived
|
|
17262
|
+
*/
|
|
17263
|
+
export type OnlineGameReservations_X_NotifyMigrationInfoReceived_Params = {};
|
|
17264
|
+
|
|
17155
17265
|
/**
|
|
17156
17266
|
* Function ProjectX.OnlineGameReservations_X.NotifyMigrationStarted
|
|
17157
17267
|
*/
|
|
@@ -17187,6 +17297,11 @@ export type OnlineGameReservations_X_NotifyReservationsUpdated_Params = {};
|
|
|
17187
17297
|
*/
|
|
17188
17298
|
export type OnlineGameReservations_X_OnInit_Params = {};
|
|
17189
17299
|
|
|
17300
|
+
/**
|
|
17301
|
+
* Function ProjectX.OnlineGameReservations_X.OnMigrationStarted
|
|
17302
|
+
*/
|
|
17303
|
+
export type OnlineGameReservations_X_OnMigrationStarted_Params = {};
|
|
17304
|
+
|
|
17190
17305
|
/**
|
|
17191
17306
|
* Function ProjectX.OnlineGameReservations_X.OnNewGameInfoCreated
|
|
17192
17307
|
*/
|
|
@@ -17344,6 +17459,7 @@ export type OnlineGameReservations_X_SetPlayersWithMigrationData_Params = {
|
|
|
17344
17459
|
StructInitializer_0x1: FReservationData; // 0x0148 (0x0110) [FReservationData] [CPF_OutParm]
|
|
17345
17460
|
FilterLocal_0x2: FMigrationReservationData[]; // 0x0258 (0x0010) [TArray<FMigrationReservationData>] [CPF_OutParm]
|
|
17346
17461
|
_0x3: U__OnlineGameReservations_X__SetPlayersWithMigrationData_0x2; // 0x0268 (0x0008) [U__OnlineGameReservations_X__SetPlayersWithMigrationData_0x2*]
|
|
17462
|
+
PlayerIdx: number; // 0x0270 (0x0004) [int32]
|
|
17347
17463
|
};
|
|
17348
17464
|
|
|
17349
17465
|
/**
|
|
@@ -17614,6 +17730,7 @@ export type OnlineGameServerBrowser_X_StartSearch_Params = {
|
|
|
17614
17730
|
InFilter: FCustomMatchSettings; // 0x0000 (0x0088) [FCustomMatchSettings] [CPF_Parm]
|
|
17615
17731
|
InPreferredRegion: string; // 0x0088 (0x0010) [FString] [CPF_Parm | CPF_OptionalParm]
|
|
17616
17732
|
ReturnValue: boolean; // 0x0098 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
17733
|
+
AntiCheatError: UError; // 0x00a0 (0x0008) [UError*]
|
|
17617
17734
|
};
|
|
17618
17735
|
|
|
17619
17736
|
/**
|
|
@@ -18979,6 +19096,13 @@ export type OnlinePlayer_X_HandleLogoutComplete_Params = {
|
|
|
18979
19096
|
bWasSuccessful: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm]
|
|
18980
19097
|
};
|
|
18981
19098
|
|
|
19099
|
+
/**
|
|
19100
|
+
* Function ProjectX.OnlinePlayer_X.HandlePsyNetConnected
|
|
19101
|
+
*/
|
|
19102
|
+
export type OnlinePlayer_X_HandlePsyNetConnected_Params = {
|
|
19103
|
+
Connection: UPsyNetConnection_X; // 0x0000 (0x0008) [UPsyNetConnection_X*] [CPF_Parm]
|
|
19104
|
+
};
|
|
19105
|
+
|
|
18982
19106
|
/**
|
|
18983
19107
|
* Function ProjectX.OnlinePlayer_X.HandlePsyNetDisconnect
|
|
18984
19108
|
*/
|
|
@@ -23000,6 +23124,15 @@ export type PlayerController_X_ClientRestart_Params = {
|
|
|
23000
23124
|
NewPawn: UPawn; // 0x0000 (0x0008) [UPawn*] [CPF_Parm]
|
|
23001
23125
|
};
|
|
23002
23126
|
|
|
23127
|
+
/**
|
|
23128
|
+
* Function ProjectX.PlayerController_X.ClientSetPendingProgressMessage
|
|
23129
|
+
*/
|
|
23130
|
+
export type PlayerController_X_ClientSetPendingProgressMessage_Params = {
|
|
23131
|
+
Reason: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
23132
|
+
Title: string; // 0x0010 (0x0010) [FString] [CPF_Parm | CPF_OptionalParm]
|
|
23133
|
+
Error: UErrorType; // 0x0020 (0x0008) [UErrorType*]
|
|
23134
|
+
};
|
|
23135
|
+
|
|
23003
23136
|
/**
|
|
23004
23137
|
* Function ProjectX.PlayerController_X.ClientSetSeasonReward
|
|
23005
23138
|
*/
|
|
@@ -23007,6 +23140,15 @@ export type PlayerController_X_ClientSetSeasonReward_Params = {
|
|
|
23007
23140
|
Reward: FPlayerSeasonRewardProgress; // 0x0000 (0x0050) [FPlayerSeasonRewardProgress] [CPF_Parm]
|
|
23008
23141
|
};
|
|
23009
23142
|
|
|
23143
|
+
/**
|
|
23144
|
+
* Function ProjectX.PlayerController_X.CloseConnectionWithReason
|
|
23145
|
+
*/
|
|
23146
|
+
export type PlayerController_X_CloseConnectionWithReason_Params = {
|
|
23147
|
+
Reason: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
23148
|
+
Title: string; // 0x0010 (0x0010) [FString] [CPF_Parm | CPF_OptionalParm]
|
|
23149
|
+
_0x1: U__PlayerController_X__CloseConnectionWithReason_0x1; // 0x0020 (0x0008) [U__PlayerController_X__CloseConnectionWithReason_0x1*]
|
|
23150
|
+
};
|
|
23151
|
+
|
|
23010
23152
|
/**
|
|
23011
23153
|
* Function ProjectX.PlayerController_X.DebugCrosshair
|
|
23012
23154
|
*/
|
|
@@ -23152,7 +23294,6 @@ export type PlayerController_X_InitPlayerReplicationInfo_Params = {};
|
|
|
23152
23294
|
export type PlayerController_X_KickPlayerForReason_Params = {
|
|
23153
23295
|
Reason: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
23154
23296
|
Title: string; // 0x0010 (0x0010) [FString] [CPF_Parm | CPF_OptionalParm]
|
|
23155
|
-
Error: UErrorType; // 0x0020 (0x0008) [UErrorType*]
|
|
23156
23297
|
};
|
|
23157
23298
|
|
|
23158
23299
|
/**
|
|
@@ -23402,6 +23543,15 @@ export type PlayerInput_X_GetRawSplitAxisValue_Params = {
|
|
|
23402
23543
|
ReturnValue: number; // 0x0010 (0x0004) [float] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
23403
23544
|
};
|
|
23404
23545
|
|
|
23546
|
+
/**
|
|
23547
|
+
* Function ProjectX.PlayerInput_X.GetUIAxisKey
|
|
23548
|
+
*/
|
|
23549
|
+
export type PlayerInput_X_GetUIAxisKey_Params = {
|
|
23550
|
+
Binding: FPlayerBinding; // 0x0000 (0x002c) [FPlayerBinding] [CPF_Parm]
|
|
23551
|
+
ReturnValue: string; // 0x0030 (0x0010) [FString] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
23552
|
+
UIKey: string; // 0x0040 (0x0010) [FString]
|
|
23553
|
+
};
|
|
23554
|
+
|
|
23405
23555
|
/**
|
|
23406
23556
|
* Function ProjectX.PlayerInput_X.GetUIKey
|
|
23407
23557
|
*/
|
|
@@ -23832,6 +23982,13 @@ export type PRI_X_UnregisterPlayerFromSession_Params = {
|
|
|
23832
23982
|
OnlineSub: UOnlineSubsystem; // 0x0000 (0x0008) [UOnlineSubsystem*]
|
|
23833
23983
|
};
|
|
23834
23984
|
|
|
23985
|
+
/**
|
|
23986
|
+
* Function ProjectX.PrivilegeCheck_X.CheckAntiCheat
|
|
23987
|
+
*/
|
|
23988
|
+
export type PrivilegeCheck_X_CheckAntiCheat_Params = {
|
|
23989
|
+
AntiCheatError: UError; // 0x0000 (0x0008) [UError*]
|
|
23990
|
+
};
|
|
23991
|
+
|
|
23835
23992
|
/**
|
|
23836
23993
|
* Function ProjectX.PrivilegeCheck_X.CheckDelegate
|
|
23837
23994
|
*/
|
|
@@ -23904,6 +24061,13 @@ export type PrivilegeCheck_X_Init_Params = {
|
|
|
23904
24061
|
*/
|
|
23905
24062
|
export type PrivilegeCheck_X_OnFinished_Params = {};
|
|
23906
24063
|
|
|
24064
|
+
/**
|
|
24065
|
+
* Function ProjectX.PrivilegeCheck_X.RequireAntiCheat
|
|
24066
|
+
*/
|
|
24067
|
+
export type PrivilegeCheck_X_RequireAntiCheat_Params = {
|
|
24068
|
+
ReturnValue: UPrivilegeCheck_X; // 0x0000 (0x0008) [UPrivilegeCheck_X*] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
24069
|
+
};
|
|
24070
|
+
|
|
23907
24071
|
/**
|
|
23908
24072
|
* Function ProjectX.PrivilegeCheck_X.RequireInternet
|
|
23909
24073
|
*/
|
|
@@ -28657,6 +28821,44 @@ export type ServerMetrics_X_Created_Params = {
|
|
|
28657
28821
|
*/
|
|
28658
28822
|
export type ServerMetrics_X_ShutDown_Params = {};
|
|
28659
28823
|
|
|
28824
|
+
/**
|
|
28825
|
+
* Function ProjectX.ServerPlayerIdCache_X.GetEpicIdFromPlayerId
|
|
28826
|
+
*/
|
|
28827
|
+
export type ServerPlayerIdCache_X_GetEpicIdFromPlayerId_Params = {
|
|
28828
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId] [CPF_Parm | CPF_OutParm]
|
|
28829
|
+
ReturnValue: string; // 0x0048 (0x0010) [FString] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
28830
|
+
_0x1: U__ServerPlayerIdCache_X__GetEpicIdFromPlayerId_0x1; // 0x0058 (0x0008) [U__ServerPlayerIdCache_X__GetEpicIdFromPlayerId_0x1*]
|
|
28831
|
+
};
|
|
28832
|
+
|
|
28833
|
+
/**
|
|
28834
|
+
* Function ProjectX.ServerPlayerIdCache_X.GetProductUserIdFromEpicId
|
|
28835
|
+
*/
|
|
28836
|
+
export type ServerPlayerIdCache_X_GetProductUserIdFromEpicId_Params = {
|
|
28837
|
+
EpicAccountId: string; // 0x0000 (0x0010) [FString] [CPF_Parm | CPF_OutParm]
|
|
28838
|
+
ReturnValue: string; // 0x0010 (0x0010) [FString] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
28839
|
+
_0x1: U__ServerPlayerIdCache_X__GetProductUserIdFromEpicId_0x1; // 0x0020 (0x0008) [U__ServerPlayerIdCache_X__GetProductUserIdFromEpicId_0x1*]
|
|
28840
|
+
};
|
|
28841
|
+
|
|
28842
|
+
/**
|
|
28843
|
+
* Function ProjectX.ServerPlayerIdCache_X.GetProductUserIdFromPlayerId
|
|
28844
|
+
*/
|
|
28845
|
+
export type ServerPlayerIdCache_X_GetProductUserIdFromPlayerId_Params = {
|
|
28846
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId] [CPF_Parm | CPF_OutParm]
|
|
28847
|
+
ReturnValue: string; // 0x0048 (0x0010) [FString] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
28848
|
+
_0x1: U__ServerPlayerIdCache_X__GetProductUserIdFromPlayerId_0x1; // 0x0058 (0x0008) [U__ServerPlayerIdCache_X__GetProductUserIdFromPlayerId_0x1*]
|
|
28849
|
+
};
|
|
28850
|
+
|
|
28851
|
+
/**
|
|
28852
|
+
* Function ProjectX.ServerPlayerIdCache_X.RegisterPlayer
|
|
28853
|
+
*/
|
|
28854
|
+
export type ServerPlayerIdCache_X_RegisterPlayer_Params = {
|
|
28855
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId] [CPF_Parm | CPF_OutParm]
|
|
28856
|
+
EpicAccountId: string; // 0x0048 (0x0010) [FString] [CPF_Parm | CPF_OutParm]
|
|
28857
|
+
ProductUserId: string; // 0x0058 (0x0010) [FString] [CPF_Parm | CPF_OutParm]
|
|
28858
|
+
FoundIndex: number; // 0x0068 (0x0004) [int32]
|
|
28859
|
+
_0x1: U__ServerPlayerIdCache_X__RegisterPlayer_0x1; // 0x0070 (0x0008) [U__ServerPlayerIdCache_X__RegisterPlayer_0x1*]
|
|
28860
|
+
};
|
|
28861
|
+
|
|
28660
28862
|
/**
|
|
28661
28863
|
* Function ProjectX.ServerPlayerTracker_X.__ServerPlayerTracker_X__Refresh_0x1
|
|
28662
28864
|
*/
|
|
@@ -28763,6 +28965,25 @@ export type ServerPlayerTracker_X_RemoveReservationMessage_Params = {
|
|
|
28763
28965
|
*/
|
|
28764
28966
|
export type ServerPlayerTracker_X_Reset_Params = {};
|
|
28765
28967
|
|
|
28968
|
+
/**
|
|
28969
|
+
* Function ProjectX.SetVisibilityComponent_X.ApplyVisibility
|
|
28970
|
+
*/
|
|
28971
|
+
export type SetVisibilityComponent_X_ApplyVisibility_Params = {
|
|
28972
|
+
bHidden: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm]
|
|
28973
|
+
AnimOwner: UActor; // 0x0008 (0x0008) [UActor*]
|
|
28974
|
+
SMC: UStaticMeshComponent; // 0x0010 (0x0008) [UStaticMeshComponent*]
|
|
28975
|
+
};
|
|
28976
|
+
|
|
28977
|
+
/**
|
|
28978
|
+
* Function ProjectX.SetVisibilityComponent_X.Attached
|
|
28979
|
+
*/
|
|
28980
|
+
export type SetVisibilityComponent_X_Attached_Params = {};
|
|
28981
|
+
|
|
28982
|
+
/**
|
|
28983
|
+
* Function ProjectX.SetVisibilityComponent_X.Detached
|
|
28984
|
+
*/
|
|
28985
|
+
export type SetVisibilityComponent_X_Detached_Params = {};
|
|
28986
|
+
|
|
28766
28987
|
/**
|
|
28767
28988
|
* Function ProjectX.ShakeComponent_X.Attached
|
|
28768
28989
|
*/
|
|
@@ -29116,6 +29337,17 @@ export type StatusTrigger_X_IsTriggered_Params = {
|
|
|
29116
29337
|
*/
|
|
29117
29338
|
export type StatusTrigger_X_ToggleTriggered_Params = {};
|
|
29118
29339
|
|
|
29340
|
+
/**
|
|
29341
|
+
* Function ProjectX.StringUtil_X.FindWordBoundary
|
|
29342
|
+
*/
|
|
29343
|
+
export type StringUtil_X_FindWordBoundary_Params = {
|
|
29344
|
+
Haystack: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
29345
|
+
Needle: string; // 0x0010 (0x0010) [FString] [CPF_Parm]
|
|
29346
|
+
bReverseSearch: boolean; // 0x0020 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OptionalParm]
|
|
29347
|
+
bIgnoreCase: boolean; // 0x0024 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OptionalParm]
|
|
29348
|
+
ReturnValue: number; // 0x0028 (0x0004) [int32] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
29349
|
+
};
|
|
29350
|
+
|
|
29119
29351
|
/**
|
|
29120
29352
|
* Function ProjectX.StringUtil_X.IsStringEmptyOrWhiteSpace
|
|
29121
29353
|
*/
|
|
@@ -29124,6 +29356,16 @@ export type StringUtil_X_IsStringEmptyOrWhiteSpace_Params = {
|
|
|
29124
29356
|
ReturnValue: boolean; // 0x0010 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
29125
29357
|
};
|
|
29126
29358
|
|
|
29359
|
+
/**
|
|
29360
|
+
* Function ProjectX.StringUtil_X.MessageCanBeCorruptedOnConversion
|
|
29361
|
+
*/
|
|
29362
|
+
export type StringUtil_X_MessageCanBeCorruptedOnConversion_Params = {
|
|
29363
|
+
Message: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
29364
|
+
ReturnValue: boolean; // 0x0010 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
29365
|
+
Utf8Bytes: number[]; // 0x0018 (0x0010) [TArray<uint8>]
|
|
29366
|
+
MessageConverted: string; // 0x0028 (0x0010) [FString]
|
|
29367
|
+
};
|
|
29368
|
+
|
|
29127
29369
|
/**
|
|
29128
29370
|
* Function ProjectX.StringUtil_X.SplitStringInHalf
|
|
29129
29371
|
*/
|
|
@@ -29210,22 +29452,22 @@ export type SystemInfo_X_IsSupported_Params = {
|
|
|
29210
29452
|
* Function ProjectX.SystemMetrics_X.RecordSpecs
|
|
29211
29453
|
*/
|
|
29212
29454
|
export type SystemMetrics_X_RecordSpecs_Params = {
|
|
29213
|
-
OS: FOSMetrics; // 0x0000 (
|
|
29214
|
-
CPU: FCpuMetrics; //
|
|
29215
|
-
Memory: FMemoryMetrics; //
|
|
29216
|
-
Video: FVideoCardMetrics; //
|
|
29217
|
-
Network: FNetworkAdapterMetrics; //
|
|
29455
|
+
OS: FOSMetrics; // 0x0000 (0x0030) [FOSMetrics]
|
|
29456
|
+
CPU: FCpuMetrics; // 0x0030 (0x0040) [FCpuMetrics]
|
|
29457
|
+
Memory: FMemoryMetrics; // 0x0070 (0x0004) [FMemoryMetrics]
|
|
29458
|
+
Video: FVideoCardMetrics; // 0x0078 (0x0018) [FVideoCardMetrics]
|
|
29459
|
+
Network: FNetworkAdapterMetrics; // 0x0090 (0x0010) [FNetworkAdapterMetrics]
|
|
29218
29460
|
};
|
|
29219
29461
|
|
|
29220
29462
|
/**
|
|
29221
29463
|
* Function ProjectX.SystemMetrics_X.Specs
|
|
29222
29464
|
*/
|
|
29223
29465
|
export type SystemMetrics_X_Specs_Params = {
|
|
29224
|
-
OS: FOSMetrics; // 0x0000 (
|
|
29225
|
-
CPU: FCpuMetrics; //
|
|
29226
|
-
Memory: FMemoryMetrics; //
|
|
29227
|
-
Video: FVideoCardMetrics; //
|
|
29228
|
-
Network: FNetworkAdapterMetrics; //
|
|
29466
|
+
OS: FOSMetrics; // 0x0000 (0x0030) [FOSMetrics] [CPF_Parm]
|
|
29467
|
+
CPU: FCpuMetrics; // 0x0030 (0x0040) [FCpuMetrics] [CPF_Parm]
|
|
29468
|
+
Memory: FMemoryMetrics; // 0x0070 (0x0004) [FMemoryMetrics] [CPF_Parm]
|
|
29469
|
+
Video: FVideoCardMetrics; // 0x0078 (0x0018) [FVideoCardMetrics] [CPF_Parm]
|
|
29470
|
+
Network: FNetworkAdapterMetrics; // 0x0090 (0x0010) [FNetworkAdapterMetrics] [CPF_Parm]
|
|
29229
29471
|
};
|
|
29230
29472
|
|
|
29231
29473
|
/**
|