@rlsdk/steam 1.0.1 → 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 +18 -10
- package/classes/Engine.ts +3 -2
- package/classes/GFxUI.ts +3 -31
- package/classes/IpDrv.ts +1 -11
- package/classes/OnlineSubsystemEOS.ts +4 -34
- package/classes/OnlineSubsystemSteamworks.ts +1 -9
- package/classes/ProjectX.ts +91 -67
- package/classes/TAGame.ts +2897 -2209
- package/classes/WinDrv.ts +1 -8
- package/constants/TAGame.ts +3 -1
- package/enums/Core.ts +34 -0
- package/enums/Engine.ts +2 -1
- package/enums/TAGame.ts +27 -4
- package/offsets/Core.ts +18 -10
- package/offsets/ProjectX.ts +73 -46
- package/offsets/TAGame.ts +2659 -2140
- 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 +16 -30
- package/parameters/GFxUI.ts +1 -9
- package/parameters/IpDrv.ts +2 -19
- package/parameters/OnlineSubsystemEOS.ts +7 -29
- package/parameters/ProjectX.ts +317 -274
- package/parameters/TAGame.ts +3260 -1464
- package/structs/Core.ts +1 -7
- package/structs/OnlineSubsystemSteamworks.ts +2 -13
- package/structs/ProjectX.ts +3 -18
- package/structs/TAGame.ts +100 -60
package/structs/Core.ts
CHANGED
|
@@ -4,13 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type { FScriptDelegate } from '../types/GameDefines';
|
|
7
|
-
import type {
|
|
8
|
-
UDistributionFloat,
|
|
9
|
-
UDistributionVector,
|
|
10
|
-
UInterfaceProperty,
|
|
11
|
-
UObject,
|
|
12
|
-
UObjectProperty,
|
|
13
|
-
} from '../classes/Core';
|
|
7
|
+
import type { UDistributionFloat, UDistributionVector, UInterfaceProperty, UObject, UObjectProperty } from '../classes/Core';
|
|
14
8
|
import type { AlphaBlendType, EInterpCurveMode, EInterpMethodType, OnlinePlatform } from '../enums/Core';
|
|
15
9
|
|
|
16
10
|
/**
|
|
@@ -4,20 +4,9 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
|
-
import type {
|
|
8
|
-
UHttpRequestInterface,
|
|
9
|
-
UOnlineGameSearch,
|
|
10
|
-
UOnlineGameSettings,
|
|
11
|
-
UOnlineProfileSettings,
|
|
12
|
-
} from '../classes/Engine';
|
|
7
|
+
import type { UHttpRequestInterface, UOnlineGameSearch, UOnlineGameSettings, UOnlineProfileSettings } from '../classes/Engine';
|
|
13
8
|
import type { EOnlineGameSearchEntryType } from '../enums/Engine';
|
|
14
|
-
import type {
|
|
15
|
-
ELeaderboardFormat,
|
|
16
|
-
ELeaderboardSortType,
|
|
17
|
-
ELeaderboardUpdateType,
|
|
18
|
-
EMuteType,
|
|
19
|
-
ESteamMatchmakingType,
|
|
20
|
-
} from '../enums/OnlineSubsystemSteamworks';
|
|
9
|
+
import type { ELeaderboardFormat, ELeaderboardSortType, ELeaderboardUpdateType, EMuteType, ESteamMatchmakingType } from '../enums/OnlineSubsystemSteamworks';
|
|
21
10
|
import type { FMultiMap_Mirror, FPointer, FUniqueNetId } from './Core';
|
|
22
11
|
import type { FEmsFile, FLocalTalker, FOnlinePlayerScore, FSettingsData, FTitleFile } from './Engine';
|
|
23
12
|
|
package/structs/ProjectX.ts
CHANGED
|
@@ -62,23 +62,7 @@ import type {
|
|
|
62
62
|
EWordFilterUsage,
|
|
63
63
|
FakeDataEnum,
|
|
64
64
|
} from '../enums/ProjectX';
|
|
65
|
-
import type {
|
|
66
|
-
FColor,
|
|
67
|
-
FEncryptedKeyIndex,
|
|
68
|
-
FGuid,
|
|
69
|
-
FInterpCurveFloat,
|
|
70
|
-
FInterpCurveLinearColor,
|
|
71
|
-
FInterpCurveVector,
|
|
72
|
-
FLinearColor,
|
|
73
|
-
FMap_Mirror,
|
|
74
|
-
FMatrix,
|
|
75
|
-
FPointer,
|
|
76
|
-
FQuat,
|
|
77
|
-
FRawDistributionFloat,
|
|
78
|
-
FRotator,
|
|
79
|
-
FUniqueNetId,
|
|
80
|
-
FVector,
|
|
81
|
-
} from './Core';
|
|
65
|
+
import type { FColor, FEncryptedKeyIndex, FGuid, FInterpCurveFloat, FInterpCurveLinearColor, FInterpCurveVector, FLinearColor, FMap_Mirror, FMatrix, FPointer, FQuat, FRawDistributionFloat, FRotator, FUniqueNetId, FVector } from './Core';
|
|
82
66
|
import type { FPostProcessSettings, FUniqueLobbyId, FViewTargetTransitionParams } from './Engine';
|
|
83
67
|
import type { FASValue } from './GFxUI';
|
|
84
68
|
|
|
@@ -1365,11 +1349,12 @@ export type FOrientation = {
|
|
|
1365
1349
|
|
|
1366
1350
|
/**
|
|
1367
1351
|
* ScriptStruct ProjectX.SystemMetrics_X.OSMetrics
|
|
1368
|
-
* Size:
|
|
1352
|
+
* Size: 0x0030
|
|
1369
1353
|
*/
|
|
1370
1354
|
export type FOSMetrics = {
|
|
1371
1355
|
Type: string; // 0x0000 (0x0010) [FString]
|
|
1372
1356
|
Bits: string; // 0x0010 (0x0010) [FString]
|
|
1357
|
+
Native: string; // 0x0020 (0x0010) [FString]
|
|
1373
1358
|
};
|
|
1374
1359
|
|
|
1375
1360
|
/**
|
package/structs/TAGame.ts
CHANGED
|
@@ -31,17 +31,7 @@ import type {
|
|
|
31
31
|
UTexture2D,
|
|
32
32
|
UTexture2DDynamic,
|
|
33
33
|
} from '../classes/Engine';
|
|
34
|
-
import type {
|
|
35
|
-
UCameraState_X,
|
|
36
|
-
UClubServerResult_X,
|
|
37
|
-
UFXActorEvent_X,
|
|
38
|
-
UFXActor_X,
|
|
39
|
-
UGFxModal_X,
|
|
40
|
-
UGFxShell_X,
|
|
41
|
-
UOnlinePlayer_X,
|
|
42
|
-
URPC_X,
|
|
43
|
-
USignedMessageObject_X,
|
|
44
|
-
} from '../classes/ProjectX';
|
|
34
|
+
import type { UCameraState_X, UClubServerResult_X, UFXActorEvent_X, UFXActor_X, UGFxModal_X, UGFxShell_X, UOnlinePlayer_X, URPC_X, USignedMessageObject_X } from '../classes/ProjectX';
|
|
45
35
|
import type {
|
|
46
36
|
UAnimStateComponent_TA,
|
|
47
37
|
UAntennaComponent_TA,
|
|
@@ -183,40 +173,9 @@ import type {
|
|
|
183
173
|
RocketPassNotificationType,
|
|
184
174
|
SearchMessageType,
|
|
185
175
|
} from '../enums/TAGame';
|
|
186
|
-
import type {
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
FLinearColor,
|
|
190
|
-
FMap_Mirror,
|
|
191
|
-
FMatrix,
|
|
192
|
-
FPlane,
|
|
193
|
-
FPointer,
|
|
194
|
-
FProductHashID,
|
|
195
|
-
FProductInstanceID,
|
|
196
|
-
FRotator,
|
|
197
|
-
FRotatorRadians,
|
|
198
|
-
FUniqueNetId,
|
|
199
|
-
FVector,
|
|
200
|
-
} from './Core';
|
|
201
|
-
import type {
|
|
202
|
-
FOnlineFriend,
|
|
203
|
-
FParticleSysParam,
|
|
204
|
-
FScalarParameterValue,
|
|
205
|
-
FTextureParameterValue,
|
|
206
|
-
FUniqueLobbyId,
|
|
207
|
-
FVectorParameterValue,
|
|
208
|
-
FViewTargetTransitionParams,
|
|
209
|
-
} from './Engine';
|
|
210
|
-
import type {
|
|
211
|
-
FBindingAction,
|
|
212
|
-
FCustomMatchTeamSettings,
|
|
213
|
-
FEffectsMapping,
|
|
214
|
-
FMapPrefs,
|
|
215
|
-
FPlayerBinding,
|
|
216
|
-
FRankedDisparitySettings,
|
|
217
|
-
FReplicatedRBState,
|
|
218
|
-
FSignedMessagePacket,
|
|
219
|
-
} from './ProjectX';
|
|
176
|
+
import type { FColor, FInterpCurveFloat, FLinearColor, FMap_Mirror, FMatrix, FPlane, FPointer, FProductHashID, FProductInstanceID, FRotator, FRotatorRadians, FUniqueNetId, FVector } from './Core';
|
|
177
|
+
import type { FOnlineFriend, FParticleSysParam, FScalarParameterValue, FTextureParameterValue, FUniqueLobbyId, FVectorParameterValue, FViewTargetTransitionParams } from './Engine';
|
|
178
|
+
import type { FBindingAction, FCustomMatchTeamSettings, FEffectsMapping, FMapPrefs, FPlayerBinding, FRankedDisparitySettings, FReplicatedRBState, FSignedMessagePacket } from './ProjectX';
|
|
220
179
|
|
|
221
180
|
/**
|
|
222
181
|
* ScriptStruct TAGame._Types_TA.AccumulatedRigidBodyCollision
|
|
@@ -551,6 +510,15 @@ export type FBallData = {
|
|
|
551
510
|
LastHitTime: number; // 0x0018 (0x0004) [float]
|
|
552
511
|
};
|
|
553
512
|
|
|
513
|
+
/**
|
|
514
|
+
* ScriptStruct TAGame.Ball_TA.BallExtraData
|
|
515
|
+
* Size: 0x0008
|
|
516
|
+
*/
|
|
517
|
+
export type FBallExtraData = {
|
|
518
|
+
DamageIndex: number; // 0x0000 (0x0004) [int32]
|
|
519
|
+
TargetSpeed: number; // 0x0004 (0x0004) [float]
|
|
520
|
+
};
|
|
521
|
+
|
|
554
522
|
/**
|
|
555
523
|
* ScriptStruct TAGame.CrowdActorSettings_TA.BallHitCrowdNoise
|
|
556
524
|
* Size: 0x0010
|
|
@@ -1848,14 +1816,30 @@ export type FDemolishInvulnerability = {
|
|
|
1848
1816
|
DemolishSources: EDemolishSource[]; // 0x0008 (0x0010) [TArray<EDemolishSource>]
|
|
1849
1817
|
};
|
|
1850
1818
|
|
|
1819
|
+
/**
|
|
1820
|
+
* ScriptStruct TAGame.DemoSpawnSelectMetrics_TA.DemoSpawnEvent
|
|
1821
|
+
* Size: 0x0058
|
|
1822
|
+
*/
|
|
1823
|
+
export type FDemoSpawnEvent = {
|
|
1824
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1825
|
+
Preference: EDemoSpawnPreference; // 0x0048 (0x0001) [EDemoSpawnPreference]
|
|
1826
|
+
TeamNum: number; // 0x004c (0x0004) [int32]
|
|
1827
|
+
SecondsRemaining: number; // 0x0050 (0x0004) [float]
|
|
1828
|
+
bOverTime: boolean; // 0x0054 (0x0004) [bool : 0x1]
|
|
1829
|
+
};
|
|
1830
|
+
|
|
1851
1831
|
/**
|
|
1852
1832
|
* ScriptStruct TAGame._Types_TA.DemoSpawnSelectionData
|
|
1853
|
-
* Size:
|
|
1833
|
+
* Size: 0x002C
|
|
1854
1834
|
*/
|
|
1855
1835
|
export type FDemoSpawnSelectionData = {
|
|
1856
1836
|
SpawnPreference: EDemoSpawnPreference; // 0x0000 (0x0001) [EDemoSpawnPreference]
|
|
1857
1837
|
SelectionState: EDemoSelectionState; // 0x0001 (0x0001) [EDemoSelectionState]
|
|
1858
1838
|
PercentageTimeLeft: number; // 0x0004 (0x0004) [int32]
|
|
1839
|
+
SpawnActor: UActor; // 0x0008 (0x0008) [UActor*]
|
|
1840
|
+
SpawnIndex: number; // 0x0010 (0x0004) [int32]
|
|
1841
|
+
SpawnLocation: FVector; // 0x0014 (0x000c) [FVector]
|
|
1842
|
+
SpawnRotation: FRotator; // 0x0020 (0x000c) [FRotator]
|
|
1859
1843
|
};
|
|
1860
1844
|
|
|
1861
1845
|
/**
|
|
@@ -4646,6 +4630,16 @@ export type FPlayerMessageInfo = {
|
|
|
4646
4630
|
DisplayName: string; // 0x0010 (0x0010) [FString]
|
|
4647
4631
|
};
|
|
4648
4632
|
|
|
4633
|
+
/**
|
|
4634
|
+
* ScriptStruct TAGame.RLBot_Util_TA.PlayerPickupData
|
|
4635
|
+
* Size: 0x0010
|
|
4636
|
+
*/
|
|
4637
|
+
export type FPlayerPickupData = {
|
|
4638
|
+
PickupClass: USpecialPickup_TA; // 0x0000 (0x0008) [USpecialPickup_TA*]
|
|
4639
|
+
TimeTillItem: number; // 0x0008 (0x0004) [int32]
|
|
4640
|
+
MaxTimeTillItem: number; // 0x000c (0x0004) [int32]
|
|
4641
|
+
};
|
|
4642
|
+
|
|
4649
4643
|
/**
|
|
4650
4644
|
* ScriptStruct TAGame._Types_TA.PlayerPrivateMatchData
|
|
4651
4645
|
* Size: 0x0050
|
|
@@ -4665,6 +4659,15 @@ export type FPlayerReportReason = {
|
|
|
4665
4659
|
Reason: string; // 0x0008 (0x0010) [FString]
|
|
4666
4660
|
};
|
|
4667
4661
|
|
|
4662
|
+
/**
|
|
4663
|
+
* ScriptStruct TAGame.RPC_GetWorldCupPlayerCountries_TA.PlayerRepresentingTeamData
|
|
4664
|
+
* Size: 0x0058
|
|
4665
|
+
*/
|
|
4666
|
+
export type FPlayerRepresentingTeamData = {
|
|
4667
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
4668
|
+
Country: string; // 0x0048 (0x0010) [FString]
|
|
4669
|
+
};
|
|
4670
|
+
|
|
4668
4671
|
/**
|
|
4669
4672
|
* ScriptStruct TAGame.RLBot_Util_TA.PlayerStats
|
|
4670
4673
|
* Size: 0x001C
|
|
@@ -4903,6 +4906,18 @@ export type FProductAttributesArray = {
|
|
|
4903
4906
|
Attributes: UProductAttribute_TA[]; // 0x0000 (0x0010) [TArray<UProductAttribute_TA*>]
|
|
4904
4907
|
};
|
|
4905
4908
|
|
|
4909
|
+
/**
|
|
4910
|
+
* ScriptStruct TAGame.SettingsSnapshotManager_TA.ProductData
|
|
4911
|
+
* Size: 0x0020
|
|
4912
|
+
*/
|
|
4913
|
+
export type FProductData = {
|
|
4914
|
+
InstanceID: FProductInstanceID; // 0x0000 (0x0010) [FProductInstanceID]
|
|
4915
|
+
ProductID: number; // 0x0010 (0x0004) [int32]
|
|
4916
|
+
PaintID: number; // 0x0014 (0x0004) [int32]
|
|
4917
|
+
SpecialEditionID: number; // 0x0018 (0x0004) [int32]
|
|
4918
|
+
TeamEditionId: number; // 0x001c (0x0004) [int32]
|
|
4919
|
+
};
|
|
4920
|
+
|
|
4906
4921
|
/**
|
|
4907
4922
|
* ScriptStruct TAGame._Types_TA.ProductDrop
|
|
4908
4923
|
* Size: 0x0024
|
|
@@ -5092,6 +5107,16 @@ export type FProfileAutoCamSettings = {
|
|
|
5092
5107
|
bFocusOnGoals: boolean; // 0x0024 (0x0004) [bool : 0x2]
|
|
5093
5108
|
};
|
|
5094
5109
|
|
|
5110
|
+
/**
|
|
5111
|
+
* ScriptStruct TAGame._Types_TA.ProfileCameraInputSettings
|
|
5112
|
+
* Size: 0x0004
|
|
5113
|
+
*/
|
|
5114
|
+
export type FProfileCameraInputSettings = {
|
|
5115
|
+
bInvertSwivelPitch: boolean; // 0x0000 (0x0004) [bool : 0x1]
|
|
5116
|
+
bUnconstrainRotation: boolean; // 0x0000 (0x0004) [bool : 0x2]
|
|
5117
|
+
bFreeLookSmoothing: boolean; // 0x0000 (0x0004) [bool : 0x4]
|
|
5118
|
+
};
|
|
5119
|
+
|
|
5095
5120
|
/**
|
|
5096
5121
|
* ScriptStruct TAGame._Types_TA.ProfileCameraSettings
|
|
5097
5122
|
* Size: 0x0020
|
|
@@ -5489,7 +5514,7 @@ export type FReservationLoadout = {
|
|
|
5489
5514
|
|
|
5490
5515
|
/**
|
|
5491
5516
|
* ScriptStruct TAGame.PhysicsMetrics_TA.ResimMetricData
|
|
5492
|
-
* Size:
|
|
5517
|
+
* Size: 0x0024
|
|
5493
5518
|
*/
|
|
5494
5519
|
export type FResimMetricData = {
|
|
5495
5520
|
GameStateName: FName; // 0x0000 (0x0008) [FName]
|
|
@@ -5498,6 +5523,8 @@ export type FResimMetricData = {
|
|
|
5498
5523
|
MinNumResimFramesPerEvent: number; // 0x0010 (0x0004) [int32]
|
|
5499
5524
|
MaxNumResimFramesPerEvent: number; // 0x0014 (0x0004) [int32]
|
|
5500
5525
|
AverageNumResimFramesPerEvent: number; // 0x0018 (0x0004) [float]
|
|
5526
|
+
AverageCorrectionEventsPerSecond: number; // 0x001c (0x0004) [float]
|
|
5527
|
+
AverageResimFramesPerSecond: number; // 0x0020 (0x0004) [float]
|
|
5501
5528
|
};
|
|
5502
5529
|
|
|
5503
5530
|
/**
|
|
@@ -6507,7 +6534,7 @@ export type FStateParams = {
|
|
|
6507
6534
|
|
|
6508
6535
|
/**
|
|
6509
6536
|
* ScriptStruct TAGame.StatFactory_TA.StatEventCollection
|
|
6510
|
-
* Size:
|
|
6537
|
+
* Size: 0x0250
|
|
6511
6538
|
*/
|
|
6512
6539
|
export type FStatEventCollection = {
|
|
6513
6540
|
Win: UStatEvent_TA; // 0x0000 (0x0008) [UStatEvent_TA*]
|
|
@@ -6572,17 +6599,18 @@ export type FStatEventCollection = {
|
|
|
6572
6599
|
CrossbarHits: UStatEvent_TA; // 0x01d8 (0x0008) [UStatEvent_TA*]
|
|
6573
6600
|
DoubleGrapple: UStatEvent_TA; // 0x01e0 (0x0008) [UStatEvent_TA*]
|
|
6574
6601
|
MaxDodgeStreak: UStatEvent_TA; // 0x01e8 (0x0008) [UStatEvent_TA*]
|
|
6575
|
-
|
|
6576
|
-
|
|
6577
|
-
|
|
6578
|
-
|
|
6579
|
-
|
|
6580
|
-
|
|
6581
|
-
|
|
6582
|
-
|
|
6583
|
-
|
|
6584
|
-
|
|
6585
|
-
|
|
6602
|
+
PowerUpsUsed: UStatEvent_TA; // 0x01f0 (0x0008) [UStatEvent_TA*]
|
|
6603
|
+
InfectedPlayersDefeated: UStatEvent_TA; // 0x01f8 (0x0008) [UStatEvent_TA*]
|
|
6604
|
+
PlayersInfected: UStatEvent_TA; // 0x0200 (0x0008) [UStatEvent_TA*]
|
|
6605
|
+
KeepUpPoint: UStatEvent_TA; // 0x0208 (0x0008) [UStatEvent_TA*]
|
|
6606
|
+
KeepUpPossession: UStatEvent_TA; // 0x0210 (0x0008) [UStatEvent_TA*]
|
|
6607
|
+
KeepUpDenial: UStatEvent_TA; // 0x0218 (0x0008) [UStatEvent_TA*]
|
|
6608
|
+
KeepUpClear: UStatEvent_TA; // 0x0220 (0x0008) [UStatEvent_TA*]
|
|
6609
|
+
FlipReset: UStatEvent_TA; // 0x0228 (0x0008) [UStatEvent_TA*]
|
|
6610
|
+
AerialFlipReset: UStatEvent_TA; // 0x0230 (0x0008) [UStatEvent_TA*]
|
|
6611
|
+
BellyFlipReset: UStatEvent_TA; // 0x0238 (0x0008) [UStatEvent_TA*]
|
|
6612
|
+
AerialBellyFlipReset: UStatEvent_TA; // 0x0240 (0x0008) [UStatEvent_TA*]
|
|
6613
|
+
MaxFlipResetStreak: UStatEvent_TA; // 0x0248 (0x0008) [UStatEvent_TA*]
|
|
6586
6614
|
};
|
|
6587
6615
|
|
|
6588
6616
|
/**
|
|
@@ -7261,10 +7289,11 @@ export type FTurningCircle = {
|
|
|
7261
7289
|
|
|
7262
7290
|
/**
|
|
7263
7291
|
* ScriptStruct TAGame.GFxData_Controls_TA.UIPlayerBinding
|
|
7264
|
-
* Size:
|
|
7292
|
+
* Size: 0x0050
|
|
7265
7293
|
*/
|
|
7266
7294
|
export type FUIPlayerBinding = FPlayerBinding & {
|
|
7267
7295
|
UIKey: string; // 0x0030 (0x0010) [FString]
|
|
7296
|
+
UIAxisKey: string; // 0x0040 (0x0010) [FString]
|
|
7268
7297
|
};
|
|
7269
7298
|
|
|
7270
7299
|
/**
|
|
@@ -7671,6 +7700,17 @@ export type FWorldContactData = {
|
|
|
7671
7700
|
Normal: FVector; // 0x001c (0x000c) [FVector]
|
|
7672
7701
|
};
|
|
7673
7702
|
|
|
7703
|
+
/**
|
|
7704
|
+
* ScriptStruct TAGame.WorldCupConfig_TA.WorldCupData
|
|
7705
|
+
* Size: 0x0034
|
|
7706
|
+
*/
|
|
7707
|
+
export type FWorldCupData = {
|
|
7708
|
+
TeamCodeName: string; // 0x0000 (0x0010) [FString]
|
|
7709
|
+
TeamColor: FLinearColor; // 0x0010 (0x0010) [FLinearColor]
|
|
7710
|
+
TeamColorSecondary: FLinearColor; // 0x0020 (0x0010) [FLinearColor]
|
|
7711
|
+
CosmeticID: number; // 0x0030 (0x0004) [int32]
|
|
7712
|
+
};
|
|
7713
|
+
|
|
7674
7714
|
/**
|
|
7675
7715
|
* ScriptStruct TAGame._Types_TA.XPInfo
|
|
7676
7716
|
* Size: 0x0020
|