@rlsdk/steam 1.0.0
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 +166 -0
- package/classes/AkAudio.ts +620 -0
- package/classes/Core.ts +1489 -0
- package/classes/Engine.ts +25512 -0
- package/classes/GFxUI.ts +480 -0
- package/classes/IpDrv.ts +2146 -0
- package/classes/OnlineSubsystemEOS.ts +954 -0
- package/classes/OnlineSubsystemSteamworks.ts +933 -0
- package/classes/ProjectX.ts +14003 -0
- package/classes/TAGame.ts +54138 -0
- package/classes/WinDrv.ts +116 -0
- package/classes/XAudio2.ts +13 -0
- package/classes/index.ts +20 -0
- package/constants/AkAudio.ts +6 -0
- package/constants/Core.ts +28 -0
- package/constants/Engine.ts +109 -0
- package/constants/GFxUI.ts +6 -0
- package/constants/IpDrv.ts +13 -0
- package/constants/OnlineSubsystemEOS.ts +6 -0
- package/constants/OnlineSubsystemSteamworks.ts +6 -0
- package/constants/ProjectX.ts +19 -0
- package/constants/TAGame.ts +79 -0
- package/constants/WinDrv.ts +6 -0
- package/constants/XAudio2.ts +6 -0
- package/constants/index.ts +14 -0
- package/enums/AkAudio.ts +121 -0
- package/enums/Core.ts +1646 -0
- package/enums/Engine.ts +3782 -0
- package/enums/GFxUI.ts +111 -0
- package/enums/IpDrv.ts +321 -0
- package/enums/OnlineSubsystemEOS.ts +25 -0
- package/enums/OnlineSubsystemSteamworks.ts +62 -0
- package/enums/ProjectX.ts +624 -0
- package/enums/TAGame.ts +2637 -0
- package/enums/WinDrv.ts +6 -0
- package/enums/XAudio2.ts +6 -0
- package/enums/index.ts +18 -0
- package/index.ts +11 -0
- package/offsets/AkAudio.ts +1049 -0
- package/offsets/Core.ts +1765 -0
- package/offsets/Engine.ts +26914 -0
- package/offsets/GFxUI.ts +525 -0
- package/offsets/IpDrv.ts +2259 -0
- package/offsets/OnlineSubsystemEOS.ts +602 -0
- package/offsets/OnlineSubsystemSteamworks.ts +1283 -0
- package/offsets/ProjectX.ts +14375 -0
- package/offsets/TAGame.ts +47649 -0
- package/offsets/WinDrv.ts +180 -0
- package/offsets/XAudio2.ts +102 -0
- package/offsets/globals.ts +13 -0
- package/offsets/index.ts +21 -0
- package/package.json +134 -0
- package/parameters/AkAudio.ts +780 -0
- package/parameters/Core.ts +4839 -0
- package/parameters/Engine.ts +37953 -0
- package/parameters/GFxUI.ts +1450 -0
- package/parameters/IpDrv.ts +7591 -0
- package/parameters/OnlineSubsystemEOS.ts +4309 -0
- package/parameters/OnlineSubsystemSteamworks.ts +4391 -0
- package/parameters/ProjectX.ts +31213 -0
- package/parameters/TAGame.ts +129564 -0
- package/parameters/WinDrv.ts +276 -0
- package/parameters/XAudio2.ts +4 -0
- package/parameters/index.ts +19 -0
- package/structs/AkAudio.ts +132 -0
- package/structs/Core.ts +750 -0
- package/structs/Engine.ts +5968 -0
- package/structs/GFxUI.ts +136 -0
- package/structs/IpDrv.ts +681 -0
- package/structs/OnlineSubsystemEOS.ts +23 -0
- package/structs/OnlineSubsystemSteamworks.ts +306 -0
- package/structs/ProjectX.ts +2527 -0
- package/structs/TAGame.ts +7487 -0
- package/structs/WinDrv.ts +6 -0
- package/structs/XAudio2.ts +6 -0
- package/structs/index.ts +18 -0
- package/types/GameDefines.ts +35 -0
- package/types/index.ts +9 -0
package/classes/Core.ts
ADDED
|
@@ -0,0 +1,1489 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Core Package - Classes
|
|
3
|
+
* Auto-generated by Stev Peifer <stev.p@outlook.com> (https://github.com/ObscuritySRL)
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
|
+
import type { EAxis, EDebugBreakType } from '../enums/Core';
|
|
8
|
+
import type {
|
|
9
|
+
FArray_Mirror,
|
|
10
|
+
FAsyncDelegateInfo,
|
|
11
|
+
FColor,
|
|
12
|
+
FGuid,
|
|
13
|
+
FInterpCurveFloat,
|
|
14
|
+
FInterpCurveVector,
|
|
15
|
+
FInterpCurveVector2D,
|
|
16
|
+
FLinearColor,
|
|
17
|
+
FMap_Mirror,
|
|
18
|
+
FMatrix,
|
|
19
|
+
FObjectProviderPendingCallback,
|
|
20
|
+
FObjectProviderSubscription,
|
|
21
|
+
FPointer,
|
|
22
|
+
FQuat,
|
|
23
|
+
FRotator,
|
|
24
|
+
FRotatorDegrees,
|
|
25
|
+
FRotatorRadians,
|
|
26
|
+
FScriptWarning,
|
|
27
|
+
FVector,
|
|
28
|
+
FVector2D,
|
|
29
|
+
} from '../structs/Core';
|
|
30
|
+
import type { UScriptGroup_ORS } from './Engine';
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Class Core.Object
|
|
34
|
+
* Size: 0x0060
|
|
35
|
+
*/
|
|
36
|
+
export type UObject = {
|
|
37
|
+
VfTableObject: FPointer; // 0x0000 (0x0008) [FPointer]
|
|
38
|
+
HashNext: FPointer; // 0x0008 (0x0008) [FPointer]
|
|
39
|
+
ObjectFlags: bigint; // 0x0010 (0x0008) [uint64]
|
|
40
|
+
HashOuterNext: FPointer; // 0x0018 (0x0008) [FPointer]
|
|
41
|
+
StateFrame: FPointer; // 0x0020 (0x0008) [FPointer]
|
|
42
|
+
Linker: UObject; // 0x0028 (0x0008) [UObject*]
|
|
43
|
+
LinkerIndex: FPointer; // 0x0030 (0x0008) [FPointer]
|
|
44
|
+
ObjectInternalInteger: number; // 0x0038 (0x0004) [int32]
|
|
45
|
+
NetIndex: number; // 0x003c (0x0004) [int32]
|
|
46
|
+
Outer: UObject; // 0x0040 (0x0008) [UObject*]
|
|
47
|
+
Name: FName; // 0x0048 (0x0008) [FName]
|
|
48
|
+
Class: UObject; // 0x0050 (0x0008) [UObject*]
|
|
49
|
+
ObjectArchetype: UObject; // 0x0058 (0x0008) [UObject*]
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
// Object Functions
|
|
53
|
+
// static RSmoothInterpTo(From: FRotator, To: FRotator, Lambda: number, DeltaTime: number): FRotator
|
|
54
|
+
// static VSmoothInterpTo(From: FVector, To: FVector, Lambda: number, DeltaTime: number): FVector
|
|
55
|
+
// static FSmoothInterpTo(From: number, To: number, Lambda: number, DeltaTime: number): number
|
|
56
|
+
// static GetSmoothInterpLerpValue(Lambda: number, DeltaTime: number): number
|
|
57
|
+
// static GetTypedOuter(ObjClass: UObject): UObject
|
|
58
|
+
// MarkPendingKill(): void
|
|
59
|
+
// static NotNone(O: UObject): boolean
|
|
60
|
+
// static SwapArrayItems(): void
|
|
61
|
+
// static Swap(): void
|
|
62
|
+
// static SumFloat(Total: number, Value: number): number
|
|
63
|
+
// static SumInt(Total: number, Value: number): number
|
|
64
|
+
// static SortDescendingFloat(A: number, B: number): number
|
|
65
|
+
// static SortAscendingFloat(A: number, B: number): number
|
|
66
|
+
// static SortDescendingString(A: string, B: string): number
|
|
67
|
+
// static SortAscendingString(A: string, B: string): number
|
|
68
|
+
// static SortDescendingQWORD(A: bigint, B: bigint): number
|
|
69
|
+
// static SortAscendingQWORD(A: bigint, B: bigint): number
|
|
70
|
+
// static SortDescendingInt(A: number, B: number): number
|
|
71
|
+
// static SortAscendingInt(A: number, B: number): number
|
|
72
|
+
// static PadString(Str: string, Characters: number): string
|
|
73
|
+
// static GetFrameCounter(): bigint
|
|
74
|
+
// static GetScaledAxisValue(Value: number, Sensitivity: number, MaxSensitivity: number): number
|
|
75
|
+
// static GetSingleton(ObjClass: UObject): UObject
|
|
76
|
+
// static GetObjectProvider(): UObjectProvider
|
|
77
|
+
// static IsAutomationTest(): boolean
|
|
78
|
+
// ToJson(): string
|
|
79
|
+
// SetRooted(bRooted: boolean): void
|
|
80
|
+
// static ProfNodeEvent(EventName: string): void
|
|
81
|
+
// static ProfNodeSetDepthThreshold(Depth: number): void
|
|
82
|
+
// static ProfNodeSetTimeThresholdSeconds(Threshold: number): void
|
|
83
|
+
// static ProfNodeStop(AssumedTimerIndex: number): void
|
|
84
|
+
// static ProfNodeStart(TimerName: string): number
|
|
85
|
+
// static CreateGuidString(): string
|
|
86
|
+
// static GetStringFromGuid(InGuid: FGuid): string
|
|
87
|
+
// static GetGuidFromString(InGuidString: string): FGuid
|
|
88
|
+
// static CreateGuid(): FGuid
|
|
89
|
+
// static IsGuidValid(InGuid: FGuid): boolean
|
|
90
|
+
// static InvalidateGuid(InGuid: FGuid): void
|
|
91
|
+
// FindStructProperty(PropertyClass: UObject, PropertyName: FName, StructName: FName): UObject
|
|
92
|
+
// FindProperty(PropertyClass: UObject, PropertyName: FName): UObject
|
|
93
|
+
// DuplicateObject(Template: UObject, ObjOuter: UObject, DestClass: UObject): UObject
|
|
94
|
+
// RunningAverage(OldAverage: number, NewValue: number, NewCount: number): number
|
|
95
|
+
// static GetCurrentTime(): number
|
|
96
|
+
// GetMaxLinearColorBrightness(C: FLinearColor): FLinearColor
|
|
97
|
+
// GetMaxColorBrightness(C: FColor): FColor
|
|
98
|
+
// static LABtoRGB(C: FLinearColor): FLinearColor
|
|
99
|
+
// static RGBtoLAB(C: FLinearColor): FLinearColor
|
|
100
|
+
// static HSVtoRGB(C: FLinearColor): FLinearColor
|
|
101
|
+
// static RGBtoHSV(C: FLinearColor): FLinearColor
|
|
102
|
+
// static IntToLinearColor(I: number): FLinearColor
|
|
103
|
+
// static IntToColor(I: number): FColor
|
|
104
|
+
// static LinearColorToInt(C: FLinearColor): number
|
|
105
|
+
// static ColorToInt(C: FColor): number
|
|
106
|
+
// SolveVelocityQuadratic(Distance: number, Speed: number, Accel: number, Time: number): boolean
|
|
107
|
+
// Sign(X: number): number
|
|
108
|
+
// static MakeVector2D(X: number, Y: number): FVector2D
|
|
109
|
+
// static VAbs(V: FVector): FVector
|
|
110
|
+
// static MakeVector(X: number, Y: number, Z: number): FVector
|
|
111
|
+
// FlattenVector(NormalToFlatten: FVector, PlaneNormal: FVector): FVector
|
|
112
|
+
// GetRealArchetypeName(): FName
|
|
113
|
+
// static FormatTime(Seconds: number): string
|
|
114
|
+
// static GetTextArchetype(ArchetypeClass: UObject, Path: string): UObject
|
|
115
|
+
// IsArchetype(): boolean
|
|
116
|
+
// UnsubscribeFromAllEvents(): void
|
|
117
|
+
// NewInstance(ObjOuter: UObject, ObjName: FName): UObject
|
|
118
|
+
// PrintDebugInfo(Drawer: UDebugDrawer): void
|
|
119
|
+
// static RotatorFromInt(RotationPitchAndYaw: number): FRotator
|
|
120
|
+
// static RotatorToInt(Rotation: FRotator): number
|
|
121
|
+
// static GetLanguage(): string
|
|
122
|
+
// GetRandomOptionSumFrequency(FreqList: number[]): number
|
|
123
|
+
// GetBuildChangelistNumber(): number
|
|
124
|
+
// GetEngineVersion(): number
|
|
125
|
+
// GetAppSeconds(): number
|
|
126
|
+
// GetSystemTime(Year: number, Month: number, DayOfWeek: number, Day: number, Hour: number, Min: number, Sec: number, MSec: number): void
|
|
127
|
+
// TimeStamp(): string
|
|
128
|
+
// TransformVectorByRotation(SourceRotation: FRotator, SourceVector: FVector, bInverse: boolean): FVector
|
|
129
|
+
// GetPackageName(): FName
|
|
130
|
+
// IsPendingKill(): boolean
|
|
131
|
+
// RangeByteToFloatUnsigned(inputByte: number): number
|
|
132
|
+
// RangeByteToFloatSigned(inputByte: number): number
|
|
133
|
+
// FloatToRangeByteUnsigned(inputFloat: number): number
|
|
134
|
+
// FloatToRangeByteSigned(inputFloat: number): number
|
|
135
|
+
// static UnwindHeading(A: number): number
|
|
136
|
+
// static FindDeltaAngle(A1: number, A2: number): number
|
|
137
|
+
// static GetHeadingAngle(Dir: FVector): number
|
|
138
|
+
// static GetAngularDegreesFromRadians(OutFOV: FVector2D): void
|
|
139
|
+
// static GetAngularFromDotDist(OutAngDist: FVector2D, DotDist: FVector2D): void
|
|
140
|
+
// static GetAngularDistance(OutAngularDist: FVector2D, Direction: FVector, AxisX: FVector, AxisY: FVector, AxisZ: FVector): boolean
|
|
141
|
+
// static GetDotDistance(OutDotDist: FVector2D, Direction: FVector, AxisX: FVector, AxisY: FVector, AxisZ: FVector): boolean
|
|
142
|
+
// LinePlaneIntersection(LineStart: FVector, LineEnd: FVector, PlaneOrigin: FVector, PlaneNormal: FVector, Out_Intersection: FVector, Out_T: number, bCheckLineSegment: boolean): boolean
|
|
143
|
+
// static PointProjectToPlane(Point: FVector, A: FVector, B: FVector, C: FVector): FVector
|
|
144
|
+
// PointDistToPlane(Point: FVector, Orientation: FRotator, Origin: FVector, out_ClosestPoint: FVector): number
|
|
145
|
+
// PointDistToSegment(Point: FVector, StartPoint: FVector, EndPoint: FVector, OutClosestPoint: FVector): number
|
|
146
|
+
// static PointDistToLine(Point: FVector, Line: FVector, Origin: FVector, OutClosestPoint: FVector): number
|
|
147
|
+
// static GetPerObjectConfigObjects(SearchClass: UObject, OutObject: UObject, ObjectOuter: UObject, MaxResults: number): void
|
|
148
|
+
// static GetPerObjectConfigSections(SearchClass: UObject, out_SectionNames: string[], ObjectOuter: UObject, MaxResults: number): boolean
|
|
149
|
+
// static ImportJSON(PropertyName: string, JSON: string): void
|
|
150
|
+
// static StaticSaveConfig(): void
|
|
151
|
+
// SaveConfig(): void
|
|
152
|
+
// static LoadSeekFreeObject(ObjClass: UObject, Path: string): UObject
|
|
153
|
+
// static FindObject(ObjectName: string, ObjectClass: UObject): UObject
|
|
154
|
+
// static DynamicLoadObject(ObjectName: string, ObjectClass: UObject, MayFail: boolean): UObject
|
|
155
|
+
// static EnumFromString(E: UObject, ValueName: FName): number
|
|
156
|
+
// static GetEnum(E: UObject, I: number): FName
|
|
157
|
+
// Disable(ProbeFunc: FName): void
|
|
158
|
+
// Enable(ProbeFunc: FName): void
|
|
159
|
+
// ContinuedState(): void
|
|
160
|
+
// PausedState(): void
|
|
161
|
+
// PoppedState(): void
|
|
162
|
+
// PushedState(): void
|
|
163
|
+
// EndState(NextStateName: FName): void
|
|
164
|
+
// BeginState(PreviousStateName: FName): void
|
|
165
|
+
// DumpStateStack(): void
|
|
166
|
+
// PopState(bPopAll: boolean): void
|
|
167
|
+
// PushState(NewState: FName, NewLabel: FName): void
|
|
168
|
+
// GetStateName(): FName
|
|
169
|
+
// IsChildState(TestState: FName, TestParentState: FName): boolean
|
|
170
|
+
// IsInState(TestState: FName, bTestStateStack: boolean): boolean
|
|
171
|
+
// GotoState(NewState: FName, Label: FName, bForceEvents: boolean, bKeepStack: boolean): void
|
|
172
|
+
// static IsUTracing(): boolean
|
|
173
|
+
// static SetUTracing(bShouldUTrace: boolean): void
|
|
174
|
+
// static GetFuncName(): FName
|
|
175
|
+
// static DebugBreak(UserFlags: number, DebuggerType: EDebugBreakType): void
|
|
176
|
+
// static GetScriptTrace(): string
|
|
177
|
+
// static ScriptTrace(): void
|
|
178
|
+
// static ParseLocalizedPropertyPath(PathName: string): string
|
|
179
|
+
// static Localize(SectionName: string, KeyName: string, PackageName: string, bOptional: boolean): string
|
|
180
|
+
// static WarnInternal(S: string): void
|
|
181
|
+
// static LogInternal(S: string, Tag: FName, bFileOnly: boolean): void
|
|
182
|
+
// static LinearColorLerp(ColorA: FLinearColor, ColorB: FLinearColor, Alpha: number): FLinearColor
|
|
183
|
+
// static Subtract_LinearColorLinearColor(A: FLinearColor, B: FLinearColor): FLinearColor
|
|
184
|
+
// static Multiply_LinearColorFloat(LC: FLinearColor, Mult: number): FLinearColor
|
|
185
|
+
// static ConvertFromSRGB(OldColor: FLinearColor): FLinearColor
|
|
186
|
+
// static LinearColorToColor(OldColor: FLinearColor): FColor
|
|
187
|
+
// static ColorToLinearColor(OldColor: FColor): FLinearColor
|
|
188
|
+
// static MakeLinearColor(R: number, G: number, B: number, A: number): FLinearColor
|
|
189
|
+
// static LerpColor(A: FColor, B: FColor, Alpha: number): FColor
|
|
190
|
+
// static MakeColor(R: number, G: number, B: number, A: number): FColor
|
|
191
|
+
// static Add_ColorColor(A: FColor, B: FColor): FColor
|
|
192
|
+
// static Multiply_ColorFloat(A: FColor, B: number): FColor
|
|
193
|
+
// static Multiply_FloatColor(A: number, B: FColor): FColor
|
|
194
|
+
// static Subtract_ColorColor(A: FColor, B: FColor): FColor
|
|
195
|
+
// static EvalInterpCurveVector2D(Vector2DCurve: FInterpCurveVector2D, InVal: number): FVector2D
|
|
196
|
+
// static AutoSetTangentsVector(Curve: FInterpCurveVector): void
|
|
197
|
+
// static EvalInterpCurveVector(VectorCurve: FInterpCurveVector, InVal: number): FVector
|
|
198
|
+
// static AutoSetTangentsFloat(Curve: FInterpCurveFloat): void
|
|
199
|
+
// static EvalInterpCurveFloat(FloatCurve: FInterpCurveFloat, InVal: number): number
|
|
200
|
+
// static vect2d(InX: number, InY: number): FVector2D
|
|
201
|
+
// static GetMappedRangeValue(InputRange: FVector2D, OutputRange: FVector2D, Value: number): number
|
|
202
|
+
// static GetRangePctByValue(Range: FVector2D, Value: number): number
|
|
203
|
+
// static GetRangeValueByPct(Range: FVector2D, Pct: number): number
|
|
204
|
+
// static V2DNormal(A: FVector2D): FVector2D
|
|
205
|
+
// static V2DSizeSq(A: FVector2D): number
|
|
206
|
+
// static V2DSize(A: FVector2D): number
|
|
207
|
+
// static Dot_Vector2DVector2D(A: FVector2D, B: FVector2D): number
|
|
208
|
+
// static SubtractEqual_Vector2DVector2D(A: FVector2D, B: FVector2D): FVector2D
|
|
209
|
+
// static AddEqual_Vector2DVector2D(A: FVector2D, B: FVector2D): FVector2D
|
|
210
|
+
// static DivideEqual_Vector2DFloat(A: FVector2D, B: number): FVector2D
|
|
211
|
+
// static MultiplyEqual_Vector2DFloat(A: FVector2D, B: number): FVector2D
|
|
212
|
+
// static Divide_Vector2DFloat(A: FVector2D, B: number): FVector2D
|
|
213
|
+
// static Multiply_Vector2DFloat(A: FVector2D, B: number): FVector2D
|
|
214
|
+
// static Subtract_Vector2DVector2D(A: FVector2D, B: FVector2D): FVector2D
|
|
215
|
+
// static Add_Vector2DVector2D(A: FVector2D, B: FVector2D): FVector2D
|
|
216
|
+
// static Subtract_QuatQuat(A: FQuat, B: FQuat): FQuat
|
|
217
|
+
// static Add_QuatQuat(A: FQuat, B: FQuat): FQuat
|
|
218
|
+
// static QuatSlerp(A: FQuat, B: FQuat, Alpha: number, bShortestPath: boolean): FQuat
|
|
219
|
+
// static QuatToRotator(A: FQuat): FRotator
|
|
220
|
+
// static QuatFromRotator(A: FRotator): FQuat
|
|
221
|
+
// static QuatFromAxisAndAngle(Axis: FVector, Angle: number): FQuat
|
|
222
|
+
// static QuatFindBetween(A: FVector, B: FVector): FQuat
|
|
223
|
+
// static QuatRotateVector(A: FQuat, B: FVector): FVector
|
|
224
|
+
// static QuatInvert(A: FQuat): FQuat
|
|
225
|
+
// static QuatDot(A: FQuat, B: FQuat): number
|
|
226
|
+
// static QuatProduct(A: FQuat, B: FQuat): FQuat
|
|
227
|
+
// static MatrixGetAxis(TM: FMatrix, Axis: EAxis): FVector
|
|
228
|
+
// static MatrixGetOrigin(TM: FMatrix): FVector
|
|
229
|
+
// static MatrixGetRotator(TM: FMatrix): FRotator
|
|
230
|
+
// static MakeRotationMatrix(Rotation: FRotator): FMatrix
|
|
231
|
+
// static MakeRotationTranslationMatrix(Translation: FVector, Rotation: FRotator): FMatrix
|
|
232
|
+
// static InverseTransformNormal(TM: FMatrix, A: FVector): FVector
|
|
233
|
+
// static TransformNormal(TM: FMatrix, A: FVector): FVector
|
|
234
|
+
// static InverseTransformVector(TM: FMatrix, A: FVector): FVector
|
|
235
|
+
// static TransformVector(TM: FMatrix, A: FVector): FVector
|
|
236
|
+
// static Multiply_MatrixMatrix(A: FMatrix, B: FMatrix): FMatrix
|
|
237
|
+
// static NotEqual_NameName(A: FName, B: FName): boolean
|
|
238
|
+
// static EqualEqual_NameName(A: FName, B: FName): boolean
|
|
239
|
+
// IsA(ClassName: FName): boolean
|
|
240
|
+
// static ClassIsChildOf(TestClass: UObject, ParentClass: UObject): boolean
|
|
241
|
+
// static NotEqual_InterfaceInterface(A: UInterface, B: UInterface): boolean
|
|
242
|
+
// static EqualEqual_InterfaceInterface(A: UInterface, B: UInterface): boolean
|
|
243
|
+
// static NotEqual_ObjectObject(A: UObject, B: UObject): boolean
|
|
244
|
+
// static EqualEqual_ObjectObject(A: UObject, B: UObject): boolean
|
|
245
|
+
// GetPathName(): string
|
|
246
|
+
// static PathName(CheckObject: UObject): string
|
|
247
|
+
// static SplitString(Source: string, Delimiter: string, bCullEmpty: boolean): string[]
|
|
248
|
+
// static ParseStringIntoArray(BaseString: string, Pieces: string[], delim: string, bCullEmpty: boolean): void
|
|
249
|
+
// static ContainsWhitespace(Text: string): boolean
|
|
250
|
+
// static RepeatString(InValue: string, Count: number): string
|
|
251
|
+
// static JoinArrayQWord(QWordArray: bigint[], delim: string, bIgnoreBlanks: boolean): string
|
|
252
|
+
// static JoinArrayInt(IntArray: number[], delim: string, bIgnoreBlanks: boolean): string
|
|
253
|
+
// static JoinArrayName(NameArray: FName[], delim: string, bIgnoreBlanks: boolean): string
|
|
254
|
+
// static JoinArrayStr(StringArray: string[], delim: string, bIgnoreBlanks: boolean): string
|
|
255
|
+
// static JoinArray(StringArray: string[], out_Result: string, delim: string, bIgnoreBlanks: boolean): void
|
|
256
|
+
// static GetRightMost(Text: string): string
|
|
257
|
+
// static Split(Text: string, SplitStr: string, bOmitSplitStr: boolean): string
|
|
258
|
+
// static TCharToUTF8(Src: string): string
|
|
259
|
+
// static UTF8ToTChar(Src: string): string
|
|
260
|
+
// static MakeAsciiSafe(InStr: string): string
|
|
261
|
+
// static PadRight(S: string, WidthChars: number): string
|
|
262
|
+
// static StartsWith(Src: string, Prefix: string): boolean
|
|
263
|
+
// static Trim(Src: string): string
|
|
264
|
+
// static Repl(Src: string, Match: string, With: string, bCaseSensitive: boolean): string
|
|
265
|
+
// static Asc(S: string): number
|
|
266
|
+
// static Chr(I: number): string
|
|
267
|
+
// static Locs(S: string): string
|
|
268
|
+
// static Caps(S: string): string
|
|
269
|
+
// static Right(S: string, I: number): string
|
|
270
|
+
// static Left(S: string, I: number): string
|
|
271
|
+
// static Mid(S: string, I: number, J: number): string
|
|
272
|
+
// static InStr(S: string, T: string, bSearchFromRight: boolean, bIgnoreCase: boolean, StartPos: number): number
|
|
273
|
+
// static Len(S: string): number
|
|
274
|
+
// static SubtractEqual_StrStr(A: string, B: string): string
|
|
275
|
+
// static AtEqual_StrStr(A: string, B: string): string
|
|
276
|
+
// static ConcatEqual_StrStr(A: string, B: string): string
|
|
277
|
+
// static ComplementEqual_StrStr(A: string, B: string): boolean
|
|
278
|
+
// static NotEqual_StrStr(A: string, B: string): boolean
|
|
279
|
+
// static EqualEqual_StrStr(A: string, B: string): boolean
|
|
280
|
+
// static GreaterEqual_StrStr(A: string, B: string): boolean
|
|
281
|
+
// static LessEqual_StrStr(A: string, B: string): boolean
|
|
282
|
+
// static Greater_StrStr(A: string, B: string): boolean
|
|
283
|
+
// static Less_StrStr(A: string, B: string): boolean
|
|
284
|
+
// static At_StrStr(A: string, B: string): string
|
|
285
|
+
// static Concat_StrStr(A: string, B: string): string
|
|
286
|
+
// static RotateRotator(Axis: FVector, Rot: FRotator, Direction: FRotator, Amount: number): FRotator
|
|
287
|
+
// static MakeQuat(X: number, Y: number, Z: number, W: number): FQuat
|
|
288
|
+
// static MakeRotator(Pitch: number, Yaw: number, Roll: number): FRotator
|
|
289
|
+
// static SClampRotAxis(DeltaTime: number, ViewAxis: number, out_DeltaViewAxis: number, MaxLimit: number, MinLimit: number, InterpolationSpeed: number): boolean
|
|
290
|
+
// static ClampRotAxisFromRange(Current: number, Min: number, Max: number): number
|
|
291
|
+
// static ClampRotAxisFromBase(Current: number, Center: number, MaxDelta: number): number
|
|
292
|
+
// static ClampRotAxis(ViewAxis: number, out_DeltaViewAxis: number, MaxLimit: number, MinLimit: number): void
|
|
293
|
+
// static FlattenRotatorOnAxis(AxisToRemove: FVector, RotToFlatten: FRotator, RotToFlattenTo: FRotator): FRotator
|
|
294
|
+
// static RSize(R: FRotator): number
|
|
295
|
+
// static RDiff(A: FRotator, B: FRotator): number
|
|
296
|
+
// static NormalizeRotAxis(Angle: number): number
|
|
297
|
+
// static RInterpTo(Current: FRotator, Target: FRotator, DeltaTime: number, InterpSpeed: number, bConstantInterpSpeed: boolean): FRotator
|
|
298
|
+
// static RTransform(R: FRotator, RBasis: FRotator): FRotator
|
|
299
|
+
// static RLerp(A: FRotator, B: FRotator, Alpha: number, bShortestPath: boolean): FRotator
|
|
300
|
+
// static Normalize(Rot: FRotator): FRotator
|
|
301
|
+
// static OrthoRotation(X: FVector, Y: FVector, Z: FVector): FRotator
|
|
302
|
+
// static RotRand(bRoll: boolean): FRotator
|
|
303
|
+
// static GetRotatorAxis(A: FRotator, Axis: number): FVector
|
|
304
|
+
// static GetUnAxes(A: FRotator, X: FVector, Y: FVector, Z: FVector): void
|
|
305
|
+
// static GetAxes(A: FRotator, X: FVector, Y: FVector, Z: FVector): void
|
|
306
|
+
// static ClockwiseFrom_IntInt(A: number, B: number): boolean
|
|
307
|
+
// static SubtractEqual_RotatorRotator(A: FRotator, B: FRotator): FRotator
|
|
308
|
+
// static AddEqual_RotatorRotator(A: FRotator, B: FRotator): FRotator
|
|
309
|
+
// static Subtract_RotatorRotator(A: FRotator, B: FRotator): FRotator
|
|
310
|
+
// static Add_RotatorRotator(A: FRotator, B: FRotator): FRotator
|
|
311
|
+
// static DivideEqual_RotatorFloat(A: FRotator, B: number): FRotator
|
|
312
|
+
// static MultiplyEqual_RotatorFloat(A: FRotator, B: number): FRotator
|
|
313
|
+
// static Divide_RotatorFloat(A: FRotator, B: number): FRotator
|
|
314
|
+
// static Multiply_FloatRotator(A: number, B: FRotator): FRotator
|
|
315
|
+
// static Multiply_RotatorFloat(A: FRotator, B: number): FRotator
|
|
316
|
+
// static NotEqual_RotatorRotator(A: FRotator, B: FRotator): boolean
|
|
317
|
+
// static EqualEqual_RotatorRotator(A: FRotator, B: FRotator): boolean
|
|
318
|
+
// static GetRadiansBetweenVectors(V0: FVector, v1: FVector): number
|
|
319
|
+
// static VClamp(A: FVector, Min: FVector, Max: FVector): FVector
|
|
320
|
+
// static vect3d(X: number, Y: number, Z: number): FVector
|
|
321
|
+
// InCylinder(Origin: FVector, Dir: FRotator, Width: number, A: FVector, bIgnoreZ: boolean): boolean
|
|
322
|
+
// static NoZDot(A: FVector, B: FVector): number
|
|
323
|
+
// static ClampLength(V: FVector, MaxLength: number): FVector
|
|
324
|
+
// static VInterpConstantTo(Current: FVector, Target: FVector, DeltaTime: number, InterpSpeed: number): FVector
|
|
325
|
+
// static VInterpTo(Current: FVector, Target: FVector, DeltaTime: number, InterpSpeed: number): FVector
|
|
326
|
+
// Construct(): void
|
|
327
|
+
// static ProjectOnToPlane(InVector: FVector, InNormal: FVector, OverBounce: number): FVector
|
|
328
|
+
// static IsZero(A: FVector): boolean
|
|
329
|
+
// static ProjectOnTo(X: FVector, Y: FVector): FVector
|
|
330
|
+
// static MirrorVectorByNormal(InVect: FVector, InNormal: FVector): FVector
|
|
331
|
+
// static VRandCone2(Dir: FVector, HorizontalConeHalfAngleRadians: number, VerticalConeHalfAngleRadians: number): FVector
|
|
332
|
+
// static VRandCone(Dir: FVector, ConeHalfAngleRadians: number): FVector
|
|
333
|
+
// static VRand(): FVector
|
|
334
|
+
// static VLerp(A: FVector, B: FVector, Alpha: number): FVector
|
|
335
|
+
// static Normal2D(A: FVector): FVector
|
|
336
|
+
// static Normal(A: FVector): FVector
|
|
337
|
+
// static VSizeSq2D(A: FVector): number
|
|
338
|
+
// static VSizeSq(A: FVector): number
|
|
339
|
+
// static VSize2D(A: FVector): number
|
|
340
|
+
// static VSize(A: FVector): number
|
|
341
|
+
// static SubtractEqual_VectorVector(A: FVector, B: FVector): FVector
|
|
342
|
+
// static AddEqual_VectorVector(A: FVector, B: FVector): FVector
|
|
343
|
+
// static DivideEqual_VectorFloat(A: FVector, B: number): FVector
|
|
344
|
+
// static MultiplyEqual_VectorVector(A: FVector, B: FVector): FVector
|
|
345
|
+
// static MultiplyEqual_VectorFloat(A: FVector, B: number): FVector
|
|
346
|
+
// static Cross_VectorVector(A: FVector, B: FVector): FVector
|
|
347
|
+
// static Dot_VectorVector(A: FVector, B: FVector): number
|
|
348
|
+
// static NotEqual_VectorVector(A: FVector, B: FVector): boolean
|
|
349
|
+
// static EqualEqual_VectorVector(A: FVector, B: FVector): boolean
|
|
350
|
+
// static GreaterGreater_VectorRotator(A: FVector, B: FRotator): FVector
|
|
351
|
+
// static LessLess_VectorRotator(A: FVector, B: FRotator): FVector
|
|
352
|
+
// static Subtract_VectorVector(A: FVector, B: FVector): FVector
|
|
353
|
+
// static Add_VectorVector(A: FVector, B: FVector): FVector
|
|
354
|
+
// static Divide_VectorFloat(A: FVector, B: number): FVector
|
|
355
|
+
// static Multiply_VectorVector(A: FVector, B: FVector): FVector
|
|
356
|
+
// static Multiply_FloatVector(A: number, B: FVector): FVector
|
|
357
|
+
// static Multiply_VectorFloat(A: FVector, B: number): FVector
|
|
358
|
+
// static Subtract_PreVector(A: FVector): FVector
|
|
359
|
+
// static FInterpConstantTo(Current: number, Target: number, DeltaTime: number, InterpSpeed: number): number
|
|
360
|
+
// static FInterpTo(Current: number, Target: number, DeltaTime: number, InterpSpeed: number): number
|
|
361
|
+
// static FPctByRange(Value: number, InMin: number, InMax: number): number
|
|
362
|
+
// static RandSign(Value: number): number
|
|
363
|
+
// static CalculateGravityPosition(Location: FVector, Velocity: FVector, Gravity: number, Time: number, GravityDirection: FVector): FVector
|
|
364
|
+
// static RandRange(InMin: number, InMax: number): number
|
|
365
|
+
// static FInterpEaseInOut(A: number, B: number, Alpha: number, Exp: number): number
|
|
366
|
+
// static FInterpEaseOut(A: number, B: number, Alpha: number, Exp: number): number
|
|
367
|
+
// static FInterpEaseIn(A: number, B: number, Alpha: number, Exp: number): number
|
|
368
|
+
// static FCubicInterp(P0: number, T0: number, P1: number, T1: number, A: number): number
|
|
369
|
+
// static FloorLog2(Value: number): number
|
|
370
|
+
// static FCeil(A: number): number
|
|
371
|
+
// static FFloor(A: number): number
|
|
372
|
+
// static Round(A: number): number
|
|
373
|
+
// static Lerp(A: number, B: number, Alpha: number): number
|
|
374
|
+
// static FClamp(V: number, A: number, B: number): number
|
|
375
|
+
// static FMax(A: number, B: number): number
|
|
376
|
+
// static FMin(A: number, B: number): number
|
|
377
|
+
// static FRand(): number
|
|
378
|
+
// static Square(A: number): number
|
|
379
|
+
// static Sqrt(A: number): number
|
|
380
|
+
// static Loge(A: number): number
|
|
381
|
+
// static Exp(A: number): number
|
|
382
|
+
// static Atan2(A: number, B: number): number
|
|
383
|
+
// static Atan(A: number): number
|
|
384
|
+
// static Tan(A: number): number
|
|
385
|
+
// static Acos(A: number): number
|
|
386
|
+
// static Cos(A: number): number
|
|
387
|
+
// static Asin(A: number): number
|
|
388
|
+
// static Sin(A: number): number
|
|
389
|
+
// static Abs(A: number): number
|
|
390
|
+
// static SubtractEqual_FloatFloat(A: number, B: number): number
|
|
391
|
+
// static AddEqual_FloatFloat(A: number, B: number): number
|
|
392
|
+
// static DivideEqual_FloatFloat(A: number, B: number): number
|
|
393
|
+
// static MultiplyEqual_FloatFloat(A: number, B: number): number
|
|
394
|
+
// static NotEqual_FloatFloat(A: number, B: number): boolean
|
|
395
|
+
// static ComplementEqual_FloatFloat(A: number, B: number): boolean
|
|
396
|
+
// static EqualEqual_FloatFloat(A: number, B: number): boolean
|
|
397
|
+
// static GreaterEqual_FloatFloat(A: number, B: number): boolean
|
|
398
|
+
// static LessEqual_FloatFloat(A: number, B: number): boolean
|
|
399
|
+
// static Greater_FloatFloat(A: number, B: number): boolean
|
|
400
|
+
// static Less_FloatFloat(A: number, B: number): boolean
|
|
401
|
+
// static Subtract_FloatFloat(A: number, B: number): number
|
|
402
|
+
// static Add_FloatFloat(A: number, B: number): number
|
|
403
|
+
// static Percent_FloatFloat(A: number, B: number): number
|
|
404
|
+
// static Divide_FloatFloat(A: number, B: number): number
|
|
405
|
+
// static Multiply_FloatFloat(A: number, B: number): number
|
|
406
|
+
// static MultiplyMultiply_FloatFloat(Base: number, Exp: number): number
|
|
407
|
+
// static Subtract_PreFloat(A: number): number
|
|
408
|
+
// static ToHex(A: number): string
|
|
409
|
+
// static Clamp(V: number, A: number, B: number): number
|
|
410
|
+
// static Max(A: number, B: number): number
|
|
411
|
+
// static Min(A: number, B: number): number
|
|
412
|
+
// static Rand(Max: number): number
|
|
413
|
+
// static FromHexColor(Hex: string): FColor
|
|
414
|
+
// static FromHex(Hex: string): number
|
|
415
|
+
// static QMin(A: bigint, B: bigint): bigint
|
|
416
|
+
// static QMax(A: bigint, B: bigint): bigint
|
|
417
|
+
// static QSubtractNoUnderflow(A: bigint, B: bigint): bigint
|
|
418
|
+
// static NotEqual_QWordInt(A: bigint, B: number): boolean
|
|
419
|
+
// static EqualEqual_QWordInt(A: bigint, B: number): boolean
|
|
420
|
+
// static SubtractEqual_QWordQWord(A: bigint, B: bigint): bigint
|
|
421
|
+
// static AddEqual_QWordQWord(A: bigint, B: bigint): bigint
|
|
422
|
+
// static NotEqual_QWordQWord(A: bigint, B: bigint): boolean
|
|
423
|
+
// static EqualEqual_QWordQWord(A: bigint, B: bigint): boolean
|
|
424
|
+
// static GreaterEqual_QWordQWord(A: bigint, B: bigint): boolean
|
|
425
|
+
// static LessEqual_QWordQWord(A: bigint, B: bigint): boolean
|
|
426
|
+
// static Greater_QWordQWord(A: bigint, B: bigint): boolean
|
|
427
|
+
// static Less_QWordQWord(A: bigint, B: bigint): boolean
|
|
428
|
+
// static Subtract_QWordQWord(A: bigint, B: bigint): number
|
|
429
|
+
// static Add_QWordQWord(A: bigint, B: bigint): bigint
|
|
430
|
+
// static Divide_QWordQWord(A: bigint, B: bigint): bigint
|
|
431
|
+
// static Multiply_QWordQWord(A: bigint, B: bigint): bigint
|
|
432
|
+
// static SubtractSubtract_Int(A: number): number
|
|
433
|
+
// static AddAdd_Int(A: number): number
|
|
434
|
+
// static SubtractSubtract_PreInt(A: number): number
|
|
435
|
+
// static AddAdd_PreInt(A: number): number
|
|
436
|
+
// static SubtractEqual_IntInt(A: number, B: number): number
|
|
437
|
+
// static AddEqual_IntInt(A: number, B: number): number
|
|
438
|
+
// static DivideEqual_IntFloat(A: number, B: number): number
|
|
439
|
+
// static MultiplyEqual_IntFloat(A: number, B: number): number
|
|
440
|
+
// static Or_IntInt(A: number, B: number): number
|
|
441
|
+
// static Xor_IntInt(A: number, B: number): number
|
|
442
|
+
// static And_IntInt(A: number, B: number): number
|
|
443
|
+
// static NotEqual_IntInt(A: number, B: number): boolean
|
|
444
|
+
// static EqualEqual_IntInt(A: number, B: number): boolean
|
|
445
|
+
// static GreaterEqual_IntInt(A: number, B: number): boolean
|
|
446
|
+
// static LessEqual_IntInt(A: number, B: number): boolean
|
|
447
|
+
// static Greater_IntInt(A: number, B: number): boolean
|
|
448
|
+
// static Less_IntInt(A: number, B: number): boolean
|
|
449
|
+
// static GreaterGreaterGreater_IntInt(A: number, B: number): number
|
|
450
|
+
// static GreaterGreater_IntInt(A: number, B: number): number
|
|
451
|
+
// static LessLess_IntInt(A: number, B: number): number
|
|
452
|
+
// static Subtract_IntInt(A: number, B: number): number
|
|
453
|
+
// static Add_IntInt(A: number, B: number): number
|
|
454
|
+
// static Percent_IntInt(A: number, B: number): number
|
|
455
|
+
// static Divide_IntInt(A: number, B: number): number
|
|
456
|
+
// static Multiply_IntInt(A: number, B: number): number
|
|
457
|
+
// static Subtract_PreInt(A: number): number
|
|
458
|
+
// static Complement_PreInt(A: number): number
|
|
459
|
+
// static SubtractSubtract_Byte(A: number): number
|
|
460
|
+
// static AddAdd_Byte(A: number): number
|
|
461
|
+
// static SubtractSubtract_PreByte(A: number): number
|
|
462
|
+
// static AddAdd_PreByte(A: number): number
|
|
463
|
+
// static SubtractEqual_ByteByte(A: number, B: number): number
|
|
464
|
+
// static AddEqual_ByteByte(A: number, B: number): number
|
|
465
|
+
// static DivideEqual_ByteByte(A: number, B: number): number
|
|
466
|
+
// static MultiplyEqual_ByteFloat(A: number, B: number): number
|
|
467
|
+
// static MultiplyEqual_ByteByte(A: number, B: number): number
|
|
468
|
+
// static OrOr_BoolBool(A: boolean, B: boolean): boolean
|
|
469
|
+
// static XorXor_BoolBool(A: boolean, B: boolean): boolean
|
|
470
|
+
// static AndAnd_BoolBool(A: boolean, B: boolean): boolean
|
|
471
|
+
// static NotEqual_BoolBool(A: boolean, B: boolean): boolean
|
|
472
|
+
// static EqualEqual_BoolBool(A: boolean, B: boolean): boolean
|
|
473
|
+
// static Not_PreBool(A: boolean): boolean
|
|
474
|
+
|
|
475
|
+
/**
|
|
476
|
+
* Class Core.__AsyncTask__All_0x1
|
|
477
|
+
* Size: 0x0070
|
|
478
|
+
* Extends: UObject
|
|
479
|
+
*/
|
|
480
|
+
export type U__AsyncTask__All_0x1 = UObject & {
|
|
481
|
+
DependentsCount: number; // 0x0060 (0x0004) [int32]
|
|
482
|
+
Parent: UAsyncTask; // 0x0068 (0x0008) [UAsyncTask*]
|
|
483
|
+
};
|
|
484
|
+
|
|
485
|
+
// __AsyncTask__All_0x1 Functions
|
|
486
|
+
// __AsyncTask__All_0x1(): void
|
|
487
|
+
|
|
488
|
+
/**
|
|
489
|
+
* Class Core._LoggingDoc
|
|
490
|
+
* Size: 0x0060
|
|
491
|
+
* Extends: UObject
|
|
492
|
+
*/
|
|
493
|
+
export type U_LoggingDoc = UObject & {};
|
|
494
|
+
|
|
495
|
+
// _LoggingDoc Functions
|
|
496
|
+
// static TestSpecialLogging(): void
|
|
497
|
+
|
|
498
|
+
/**
|
|
499
|
+
* Class Core._Types_Core
|
|
500
|
+
* Size: 0x0060
|
|
501
|
+
* Extends: UObject
|
|
502
|
+
*/
|
|
503
|
+
export type U_Types_Core = UObject & {};
|
|
504
|
+
|
|
505
|
+
/**
|
|
506
|
+
* Class Core._Types_Generated
|
|
507
|
+
* Size: 0x0060
|
|
508
|
+
* Extends: UObject
|
|
509
|
+
*/
|
|
510
|
+
export type U_Types_Generated = UObject & {};
|
|
511
|
+
|
|
512
|
+
/**
|
|
513
|
+
* Class Core.ErrorList
|
|
514
|
+
* Size: 0x0080
|
|
515
|
+
* Extends: UObject
|
|
516
|
+
*/
|
|
517
|
+
export type UErrorList = UObject & {
|
|
518
|
+
LocalizationPackage: string; // 0x0060 (0x0010) [FString]
|
|
519
|
+
LocalizationSection: string; // 0x0070 (0x0010) [FString]
|
|
520
|
+
};
|
|
521
|
+
|
|
522
|
+
// ErrorList Functions
|
|
523
|
+
// static GetErrorType(Error: FName): UErrorType
|
|
524
|
+
|
|
525
|
+
/**
|
|
526
|
+
* Class Core.ArrayErrors
|
|
527
|
+
* Size: 0x0090
|
|
528
|
+
* Extends: UErrorList
|
|
529
|
+
*/
|
|
530
|
+
export type UArrayErrors = UErrorList & {
|
|
531
|
+
Remove_NegativeNumberOfElements: UErrorType; // 0x0080 (0x0008) [UErrorType*]
|
|
532
|
+
Remove_OutOfBounds: UErrorType; // 0x0088 (0x0008) [UErrorType*]
|
|
533
|
+
};
|
|
534
|
+
|
|
535
|
+
/**
|
|
536
|
+
* Class Core.ArrayFuncs
|
|
537
|
+
* Size: 0x0060
|
|
538
|
+
* Extends: UObject
|
|
539
|
+
*/
|
|
540
|
+
export type UArrayFuncs = UObject & {};
|
|
541
|
+
|
|
542
|
+
// ArrayFuncs Functions
|
|
543
|
+
// static GetRandomElement(): void
|
|
544
|
+
// static ShuffleArray(): void
|
|
545
|
+
|
|
546
|
+
/**
|
|
547
|
+
* Class Core.Field
|
|
548
|
+
* Size: 0x0070
|
|
549
|
+
* Extends: UObject
|
|
550
|
+
*/
|
|
551
|
+
export type UField = UObject & {};
|
|
552
|
+
|
|
553
|
+
/**
|
|
554
|
+
* Class Core.Property
|
|
555
|
+
* Size: 0x00C8
|
|
556
|
+
* Extends: UField
|
|
557
|
+
*/
|
|
558
|
+
export type UProperty = UField & {};
|
|
559
|
+
|
|
560
|
+
/**
|
|
561
|
+
* Class Core.ArrayProperty
|
|
562
|
+
* Size: 0x00D0
|
|
563
|
+
* Extends: UProperty
|
|
564
|
+
*/
|
|
565
|
+
export type UArrayProperty = UProperty & {};
|
|
566
|
+
|
|
567
|
+
/**
|
|
568
|
+
* Class Core.AsyncTask
|
|
569
|
+
* Size: 0x00D0
|
|
570
|
+
* Extends: UObject
|
|
571
|
+
*/
|
|
572
|
+
export type UAsyncTask = UObject & {
|
|
573
|
+
bComplete: boolean; // 0x0060 (0x0004) [bool : 0x1]
|
|
574
|
+
bDisposed: boolean; // 0x0060 (0x0004) [bool : 0x2]
|
|
575
|
+
Error: UError; // 0x0068 (0x0008) [UError*]
|
|
576
|
+
__EventAsyncTaskSuccess__Delegate: FScriptDelegate; // 0x0070 (0x0018) [FScriptDelegate]
|
|
577
|
+
__EventAsyncTaskFail__Delegate: FScriptDelegate; // 0x0088 (0x0018) [FScriptDelegate]
|
|
578
|
+
__EventAsyncTaskComplete__Delegate: FScriptDelegate; // 0x00a0 (0x0018) [FScriptDelegate]
|
|
579
|
+
__EventDisposed__Delegate: FScriptDelegate; // 0x00b8 (0x0018) [FScriptDelegate]
|
|
580
|
+
};
|
|
581
|
+
|
|
582
|
+
// AsyncTask Functions
|
|
583
|
+
// QueCallbacks(): void
|
|
584
|
+
// static CreateError(InError: UError): UAsyncTask
|
|
585
|
+
// static CreateSuccess(): UAsyncTask
|
|
586
|
+
// static Create(): UAsyncTask
|
|
587
|
+
// Watch(Other: UAsyncTask): UAsyncTask
|
|
588
|
+
// static All(Dependents: UAsyncTask[]): UAsyncTask
|
|
589
|
+
// DependOn(Other: UAsyncTask): UAsyncTask
|
|
590
|
+
// NotifyOnDispose(Callback: FScriptDelegate): UAsyncTask
|
|
591
|
+
// ClearCallbacks(): void
|
|
592
|
+
// Dispose(): void
|
|
593
|
+
// SetComplete(InError: UError): void
|
|
594
|
+
// SetError(InError: UError): void
|
|
595
|
+
// NotifyOnComplete(Callback: FScriptDelegate): UAsyncTask
|
|
596
|
+
// NotifyOnFail(Callback: FScriptDelegate): UAsyncTask
|
|
597
|
+
// NotifyOnSuccess(Callback: FScriptDelegate): UAsyncTask
|
|
598
|
+
// EventDisposed(): void
|
|
599
|
+
// EventAsyncTaskComplete(TaskError: UError): void
|
|
600
|
+
// EventAsyncTaskFail(TaskError: UError): void
|
|
601
|
+
// EventAsyncTaskSuccess(): void
|
|
602
|
+
|
|
603
|
+
/**
|
|
604
|
+
* Class Core.AsyncResult
|
|
605
|
+
* Size: 0x00D0
|
|
606
|
+
* Extends: UAsyncTask
|
|
607
|
+
*/
|
|
608
|
+
export type UAsyncResult = UAsyncTask & {};
|
|
609
|
+
|
|
610
|
+
/**
|
|
611
|
+
* Class Core.AutomationTest
|
|
612
|
+
* Size: 0x00A0
|
|
613
|
+
* Extends: UObject
|
|
614
|
+
*/
|
|
615
|
+
export type UAutomationTest = UObject & {
|
|
616
|
+
MaterialsCompiled: string[]; // 0x0060 (0x0010) [TArray<FString>]
|
|
617
|
+
MaterialsFailedCompile: string[]; // 0x0070 (0x0010) [TArray<FString>]
|
|
618
|
+
AsyncPreloadPackagesMissing: string[]; // 0x0080 (0x0010) [TArray<FString>]
|
|
619
|
+
ScriptWarnings: FScriptWarning[]; // 0x0090 (0x0010) [TArray<FScriptWarning>]
|
|
620
|
+
};
|
|
621
|
+
|
|
622
|
+
/**
|
|
623
|
+
* Class Core.Base64
|
|
624
|
+
* Size: 0x0060
|
|
625
|
+
* Extends: UObject
|
|
626
|
+
*/
|
|
627
|
+
export type UBase64 = UObject & {};
|
|
628
|
+
|
|
629
|
+
// Base64 Functions
|
|
630
|
+
// static PadAndDecodeString(Input: string): number[]
|
|
631
|
+
// static DecodeStringInline(Input: string, Output: number[]): void
|
|
632
|
+
// static DecodeString(Input: string): number[]
|
|
633
|
+
// static DecodeInline(Input: number[], Output: number[]): void
|
|
634
|
+
// static Decode(Input: number[]): number[]
|
|
635
|
+
// static EncodeStringInline(Input: number[], Output: string): void
|
|
636
|
+
// static EncodeString(Input: number[]): string
|
|
637
|
+
// static EncodeInline(Input: number[], Output: number[]): void
|
|
638
|
+
// static Encode(Input: number[]): number[]
|
|
639
|
+
|
|
640
|
+
/**
|
|
641
|
+
* Class Core.BoolProperty
|
|
642
|
+
* Size: 0x00D0
|
|
643
|
+
* Extends: UProperty
|
|
644
|
+
*/
|
|
645
|
+
export type UBoolProperty = UProperty & {};
|
|
646
|
+
|
|
647
|
+
/**
|
|
648
|
+
* Class Core.Breadcrumbs
|
|
649
|
+
* Size: 0x0068
|
|
650
|
+
* Extends: UObject
|
|
651
|
+
*/
|
|
652
|
+
export type UBreadcrumbs = UObject & {
|
|
653
|
+
BreadcrumbInstance: FPointer; // 0x0060 (0x0008) [FPointer]
|
|
654
|
+
};
|
|
655
|
+
|
|
656
|
+
// Breadcrumbs Functions
|
|
657
|
+
// BreadcrumbFloat(Category: string, Value: number): void
|
|
658
|
+
// BreadcrumbString(Category: string, Value: string): void
|
|
659
|
+
|
|
660
|
+
/**
|
|
661
|
+
* Class Core.ByteProperty
|
|
662
|
+
* Size: 0x00D0
|
|
663
|
+
* Extends: UProperty
|
|
664
|
+
*/
|
|
665
|
+
export type UByteProperty = UProperty & {};
|
|
666
|
+
|
|
667
|
+
/**
|
|
668
|
+
* Class Core.Struct
|
|
669
|
+
* Size: 0x0130
|
|
670
|
+
* Extends: UField
|
|
671
|
+
*/
|
|
672
|
+
export type UStruct = UField & {};
|
|
673
|
+
|
|
674
|
+
/**
|
|
675
|
+
* Class Core.State
|
|
676
|
+
* Size: 0x0190
|
|
677
|
+
* Extends: UStruct
|
|
678
|
+
*/
|
|
679
|
+
export type UState = UStruct & {};
|
|
680
|
+
|
|
681
|
+
/**
|
|
682
|
+
* Class Core.Class
|
|
683
|
+
* Size: 0x03B8
|
|
684
|
+
* Extends: UState
|
|
685
|
+
*/
|
|
686
|
+
export type UClass = UState & {};
|
|
687
|
+
|
|
688
|
+
/**
|
|
689
|
+
* Class Core.ObjectProperty
|
|
690
|
+
* Size: 0x00D8
|
|
691
|
+
* Extends: UProperty
|
|
692
|
+
*/
|
|
693
|
+
export type UObjectProperty = UProperty & {};
|
|
694
|
+
|
|
695
|
+
/**
|
|
696
|
+
* Class Core.ClassProperty
|
|
697
|
+
* Size: 0x00E0
|
|
698
|
+
* Extends: UObjectProperty
|
|
699
|
+
*/
|
|
700
|
+
export type UClassProperty = UObjectProperty & {};
|
|
701
|
+
|
|
702
|
+
/**
|
|
703
|
+
* Class Core.ClassTuple_ORS
|
|
704
|
+
* Size: 0x00C8
|
|
705
|
+
* Extends: UObject
|
|
706
|
+
*/
|
|
707
|
+
export type UClassTuple_ORS = UObject & {};
|
|
708
|
+
|
|
709
|
+
/**
|
|
710
|
+
* Class Core.ClassTupleCollection_ORS
|
|
711
|
+
* Size: 0x00C0
|
|
712
|
+
* Extends: UObject
|
|
713
|
+
*/
|
|
714
|
+
export type UClassTupleCollection_ORS = UObject & {};
|
|
715
|
+
|
|
716
|
+
/**
|
|
717
|
+
* Class Core.Commandlet
|
|
718
|
+
* Size: 0x00B4
|
|
719
|
+
* Extends: UObject
|
|
720
|
+
*/
|
|
721
|
+
export type UCommandlet = UObject & {
|
|
722
|
+
HelpDescription: string; // 0x0060 (0x0010) [FString]
|
|
723
|
+
HelpUsage: string; // 0x0070 (0x0010) [FString]
|
|
724
|
+
HelpWebLink: string; // 0x0080 (0x0010) [FString]
|
|
725
|
+
HelpParamNames: string[]; // 0x0090 (0x0010) [TArray<FString>]
|
|
726
|
+
HelpParamDescriptions: string[]; // 0x00a0 (0x0010) [TArray<FString>]
|
|
727
|
+
IsServer: boolean; // 0x00b0 (0x0004) [bool : 0x1]
|
|
728
|
+
IsClient: boolean; // 0x00b0 (0x0004) [bool : 0x2]
|
|
729
|
+
IsEditor: boolean; // 0x00b0 (0x0004) [bool : 0x4]
|
|
730
|
+
LogToConsole: boolean; // 0x00b0 (0x0004) [bool : 0x8]
|
|
731
|
+
ShowErrorCount: boolean; // 0x00b0 (0x0004) [bool : 0x10]
|
|
732
|
+
};
|
|
733
|
+
|
|
734
|
+
// Commandlet Functions
|
|
735
|
+
// Main(Params: string): number
|
|
736
|
+
|
|
737
|
+
/**
|
|
738
|
+
* Class Core.Component
|
|
739
|
+
* Size: 0x0070
|
|
740
|
+
* Extends: UObject
|
|
741
|
+
*/
|
|
742
|
+
export type UComponent = UObject & {
|
|
743
|
+
TemplateOwnerClass: UObject; // 0x0060 (0x0008) [UObject*]
|
|
744
|
+
TemplateName: FName; // 0x0068 (0x0008) [FName]
|
|
745
|
+
};
|
|
746
|
+
|
|
747
|
+
/**
|
|
748
|
+
* Class Core.ComponentProperty
|
|
749
|
+
* Size: 0x00D8
|
|
750
|
+
* Extends: UObjectProperty
|
|
751
|
+
*/
|
|
752
|
+
export type UComponentProperty = UObjectProperty & {};
|
|
753
|
+
|
|
754
|
+
/**
|
|
755
|
+
* Class Core.Compression
|
|
756
|
+
* Size: 0x0060
|
|
757
|
+
* Extends: UObject
|
|
758
|
+
*/
|
|
759
|
+
export type UCompression = UObject & {};
|
|
760
|
+
|
|
761
|
+
// Compression Functions
|
|
762
|
+
// static ZLibCompress(Uncompressed: number[], OutCompressed: number[]): boolean
|
|
763
|
+
|
|
764
|
+
/**
|
|
765
|
+
* Class Core.Config_ORS
|
|
766
|
+
* Size: 0x00C0
|
|
767
|
+
* Extends: UObject
|
|
768
|
+
*/
|
|
769
|
+
export type UConfig_ORS = UObject & {};
|
|
770
|
+
|
|
771
|
+
/**
|
|
772
|
+
* Class Core.Const
|
|
773
|
+
* Size: 0x0080
|
|
774
|
+
* Extends: UField
|
|
775
|
+
*/
|
|
776
|
+
export type UConst = UField & {};
|
|
777
|
+
|
|
778
|
+
/**
|
|
779
|
+
* Class Core.DebugDrawer
|
|
780
|
+
* Size: 0x00C0
|
|
781
|
+
* Extends: UObject
|
|
782
|
+
*/
|
|
783
|
+
export type UDebugDrawer = UObject & {
|
|
784
|
+
DefaultTextColor: FColor; // 0x0060 (0x0004) [FColor]
|
|
785
|
+
bSilent: boolean; // 0x0064 (0x0004) [bool : 0x1]
|
|
786
|
+
bPrintActorsInline: boolean; // 0x0064 (0x0004) [bool : 0x2]
|
|
787
|
+
Indentation: number; // 0x0068 (0x0004) [int32]
|
|
788
|
+
IndentationString: string; // 0x0070 (0x0010) [FString]
|
|
789
|
+
PrintedObjects: UObject[]; // 0x0080 (0x0010) [TArray<UObject*>]
|
|
790
|
+
QueuedObjects: UObject[]; // 0x0090 (0x0010) [TArray<UObject*>]
|
|
791
|
+
PrintObjectCount: number; // 0x00a0 (0x0004) [int32]
|
|
792
|
+
__LogFunc__Delegate: FScriptDelegate; // 0x00a8 (0x0018) [FScriptDelegate]
|
|
793
|
+
};
|
|
794
|
+
|
|
795
|
+
// DebugDrawer Functions
|
|
796
|
+
// Reset(): void
|
|
797
|
+
// PrintText(Text: string, InColor: FColor): void
|
|
798
|
+
// PrintArrayProperty(PropertyName: string, Index: number, Value: string): void
|
|
799
|
+
// PrintProperty(PropertyName: string, Value: string): void
|
|
800
|
+
// EndSection(): void
|
|
801
|
+
// StartSection(): void
|
|
802
|
+
// PrintObject(Title: string, ForObj: UObject): void
|
|
803
|
+
// PrintSeperater(): void
|
|
804
|
+
// DebugArrayObject(Title: string, Index: number, ForObj: UObject): void
|
|
805
|
+
// DebugObject(Title: string, ForObj: UObject): void
|
|
806
|
+
// ShouldDisplayDebug(Category: FName): boolean
|
|
807
|
+
// LogFunc(Str: string): void
|
|
808
|
+
|
|
809
|
+
/**
|
|
810
|
+
* Class Core.DelegateProperty
|
|
811
|
+
* Size: 0x00D8
|
|
812
|
+
* Extends: UProperty
|
|
813
|
+
*/
|
|
814
|
+
export type UDelegateProperty = UProperty & {};
|
|
815
|
+
|
|
816
|
+
/**
|
|
817
|
+
* Class Core.DelegateTracker
|
|
818
|
+
* Size: 0x0088
|
|
819
|
+
* Extends: UObject
|
|
820
|
+
*/
|
|
821
|
+
export type UDelegateTracker = UObject & {
|
|
822
|
+
AsyncDelegates: FAsyncDelegateInfo[]; // 0x0060 (0x0010) [TArray<FAsyncDelegateInfo>]
|
|
823
|
+
__PlaceholderDelegate__Delegate: FScriptDelegate; // 0x0070 (0x0018) [FScriptDelegate]
|
|
824
|
+
};
|
|
825
|
+
|
|
826
|
+
// DelegateTracker Functions
|
|
827
|
+
// RemoveDelegate(CallbackId: number): FScriptDelegate
|
|
828
|
+
// AddDelegate(Callback: FScriptDelegate): number
|
|
829
|
+
// PlaceholderDelegate(): void
|
|
830
|
+
|
|
831
|
+
/**
|
|
832
|
+
* Class Core.DistributionFloat
|
|
833
|
+
* Size: 0x007C
|
|
834
|
+
* Extends: UComponent
|
|
835
|
+
*/
|
|
836
|
+
export type UDistributionFloat = UComponent & {
|
|
837
|
+
VfTable_FCurveEdInterface: FPointer; // 0x0070 (0x0008) [FPointer]
|
|
838
|
+
bCanBeBaked: boolean; // 0x0078 (0x0004) [bool : 0x1]
|
|
839
|
+
bIsDirty: boolean; // 0x0078 (0x0004) [bool : 0x2]
|
|
840
|
+
};
|
|
841
|
+
|
|
842
|
+
// DistributionFloat Functions
|
|
843
|
+
// GetFloatValue(F: number): number
|
|
844
|
+
|
|
845
|
+
/**
|
|
846
|
+
* Class Core.DistributionVector
|
|
847
|
+
* Size: 0x007C
|
|
848
|
+
* Extends: UComponent
|
|
849
|
+
*/
|
|
850
|
+
export type UDistributionVector = UComponent & {
|
|
851
|
+
VfTable_FCurveEdInterface: FPointer; // 0x0070 (0x0008) [FPointer]
|
|
852
|
+
bCanBeBaked: boolean; // 0x0078 (0x0004) [bool : 0x1]
|
|
853
|
+
bIsDirty: boolean; // 0x0078 (0x0004) [bool : 0x2]
|
|
854
|
+
};
|
|
855
|
+
|
|
856
|
+
// DistributionVector Functions
|
|
857
|
+
// GetVectorValue(F: number, LastExtreme: number): FVector
|
|
858
|
+
|
|
859
|
+
/**
|
|
860
|
+
* Class Core.Enum
|
|
861
|
+
* Size: 0x0080
|
|
862
|
+
* Extends: UField
|
|
863
|
+
*/
|
|
864
|
+
export type UEnum = UField & {};
|
|
865
|
+
|
|
866
|
+
/**
|
|
867
|
+
* Class Core.Error
|
|
868
|
+
* Size: 0x0084
|
|
869
|
+
* Extends: UObject
|
|
870
|
+
*/
|
|
871
|
+
export type UError = UObject & {
|
|
872
|
+
Type: UErrorType; // 0x0060 (0x0008) [UErrorType*]
|
|
873
|
+
Message: string; // 0x0068 (0x0010) [FString]
|
|
874
|
+
Code: number; // 0x0078 (0x0004) [int32]
|
|
875
|
+
RetryKey: FName; // 0x007c (0x0008) [FName]
|
|
876
|
+
};
|
|
877
|
+
|
|
878
|
+
// Error Functions
|
|
879
|
+
// GetDebugMessage(): string
|
|
880
|
+
// GetLocalizedMessage(): string
|
|
881
|
+
|
|
882
|
+
/**
|
|
883
|
+
* Class Core.ErrorType
|
|
884
|
+
* Size: 0x0070
|
|
885
|
+
* Extends: UObject
|
|
886
|
+
*/
|
|
887
|
+
export type UErrorType = UObject & {
|
|
888
|
+
LocalizationKey: string; // 0x0060 (0x0010) [FString]
|
|
889
|
+
};
|
|
890
|
+
|
|
891
|
+
// ErrorType Functions
|
|
892
|
+
// CreateError(InErrorMessage: string, InErrorCode: number): UError
|
|
893
|
+
// GetLocalizedMessage(): string
|
|
894
|
+
|
|
895
|
+
/**
|
|
896
|
+
* Class Core.Exporter
|
|
897
|
+
* Size: 0x0098
|
|
898
|
+
* Extends: UObject
|
|
899
|
+
*/
|
|
900
|
+
export type UExporter = UObject & {
|
|
901
|
+
FormatExtension: string[]; // 0x0068 (0x0010) [TArray<FString>]
|
|
902
|
+
FormatDescription: string[]; // 0x0078 (0x0010) [TArray<FString>]
|
|
903
|
+
};
|
|
904
|
+
|
|
905
|
+
/**
|
|
906
|
+
* Class Core.Factory
|
|
907
|
+
* Size: 0x00B8
|
|
908
|
+
* Extends: UObject
|
|
909
|
+
*/
|
|
910
|
+
export type UFactory = UObject & {
|
|
911
|
+
Category: string; // 0x0060 (0x0010) [FString]
|
|
912
|
+
SupportedClass: UObject; // 0x0070 (0x0008) [UObject*]
|
|
913
|
+
ContextClass: UObject; // 0x0078 (0x0008) [UObject*]
|
|
914
|
+
Description: string; // 0x0080 (0x0010) [FString]
|
|
915
|
+
Formats: string[]; // 0x0090 (0x0010) [TArray<FString>]
|
|
916
|
+
bCreateNew: boolean; // 0x00a0 (0x0004) [bool : 0x1]
|
|
917
|
+
bEditAfterNew: boolean; // 0x00a0 (0x0004) [bool : 0x2]
|
|
918
|
+
bEditorImport: boolean; // 0x00a0 (0x0004) [bool : 0x4]
|
|
919
|
+
bText: boolean; // 0x00a0 (0x0004) [bool : 0x8]
|
|
920
|
+
bAssetNameMatchesPackageName: boolean; // 0x00a0 (0x0004) [bool : 0x10]
|
|
921
|
+
AutoPriority: number; // 0x00a4 (0x0004) [int32]
|
|
922
|
+
ValidGameNames: string[]; // 0x00a8 (0x0010) [TArray<FString>]
|
|
923
|
+
};
|
|
924
|
+
|
|
925
|
+
/**
|
|
926
|
+
* Class Core.FeatureSystem
|
|
927
|
+
* Size: 0x0080
|
|
928
|
+
* Extends: UObject
|
|
929
|
+
*/
|
|
930
|
+
export type UFeatureSystem = UObject & {
|
|
931
|
+
Prime: boolean; // 0x0068 (0x0004) [bool : 0x2]
|
|
932
|
+
Matchmaking: boolean; // 0x0068 (0x0004) [bool : 0x8]
|
|
933
|
+
PrivateMatch: boolean; // 0x0068 (0x0004) [bool : 0x10]
|
|
934
|
+
SplitscreenMatch: boolean; // 0x0068 (0x0004) [bool : 0x20]
|
|
935
|
+
SplitscreenJoin: boolean; // 0x0068 (0x0004) [bool : 0x40]
|
|
936
|
+
SeasonMode: boolean; // 0x0068 (0x0004) [bool : 0x80]
|
|
937
|
+
Tutorial: boolean; // 0x0068 (0x0004) [bool : 0x100]
|
|
938
|
+
Garage: boolean; // 0x0068 (0x0004) [bool : 0x200]
|
|
939
|
+
Options: boolean; // 0x0068 (0x0004) [bool : 0x400]
|
|
940
|
+
ReplaySaves: boolean; // 0x0068 (0x0004) [bool : 0x800]
|
|
941
|
+
MainMenu: boolean; // 0x0068 (0x0004) [bool : 0x1000]
|
|
942
|
+
MidgameMenu: boolean; // 0x0068 (0x0004) [bool : 0x2000]
|
|
943
|
+
Party: boolean; // 0x0068 (0x0004) [bool : 0x4000]
|
|
944
|
+
PsyNetParty: boolean; // 0x0068 (0x0004) [bool : 0x8000]
|
|
945
|
+
Achievements: boolean; // 0x0068 (0x0004) [bool : 0x10000]
|
|
946
|
+
Stats: boolean; // 0x0068 (0x0004) [bool : 0x20000]
|
|
947
|
+
Leaderboards: boolean; // 0x0068 (0x0004) [bool : 0x40000]
|
|
948
|
+
XP: boolean; // 0x0068 (0x0004) [bool : 0x80000]
|
|
949
|
+
Chat: boolean; // 0x0068 (0x0004) [bool : 0x100000]
|
|
950
|
+
TrainingDifficulties: boolean; // 0x0068 (0x0004) [bool : 0x200000]
|
|
951
|
+
Spectator: boolean; // 0x0068 (0x0004) [bool : 0x400000]
|
|
952
|
+
CrossPlatformPrivateMatch: boolean; // 0x0068 (0x0004) [bool : 0x800000]
|
|
953
|
+
Lan: boolean; // 0x0068 (0x0004) [bool : 0x1000000]
|
|
954
|
+
PlayerReporting: boolean; // 0x0068 (0x0004) [bool : 0x2000000]
|
|
955
|
+
OnlineServices: boolean; // 0x0068 (0x0004) [bool : 0x40000000]
|
|
956
|
+
RemoveCrossPlatformProducts: boolean; // 0x0068 (0x0004) [bool : 0x80000000]
|
|
957
|
+
ProductValidation: boolean; // 0x006c (0x0004) [bool : 0x1]
|
|
958
|
+
MapPrefs: boolean; // 0x006c (0x0004) [bool : 0x2]
|
|
959
|
+
PreMatchLobby: boolean; // 0x006c (0x0004) [bool : 0x8]
|
|
960
|
+
Challenges: boolean; // 0x006c (0x0004) [bool : 0x10]
|
|
961
|
+
AntiAddiction: boolean; // 0x006c (0x0004) [bool : 0x20]
|
|
962
|
+
TrainingEditor: boolean; // 0x006c (0x0004) [bool : 0x40]
|
|
963
|
+
VoiceChat: boolean; // 0x006c (0x0004) [bool : 0x80]
|
|
964
|
+
SplitScreen: boolean; // 0x006c (0x0004) [bool : 0x100]
|
|
965
|
+
Clubs: boolean; // 0x006c (0x0004) [bool : 0x200]
|
|
966
|
+
FilterContent: boolean; // 0x006c (0x0004) [bool : 0x400]
|
|
967
|
+
EncryptContent: boolean; // 0x006c (0x0004) [bool : 0x800]
|
|
968
|
+
EsportsCamera: boolean; // 0x006c (0x0004) [bool : 0x4000]
|
|
969
|
+
OnlineXP: boolean; // 0x006c (0x0004) [bool : 0x8000]
|
|
970
|
+
ClanforgeReservation: boolean; // 0x006c (0x0004) [bool : 0x20000]
|
|
971
|
+
UserSettingObserver: boolean; // 0x006c (0x0004) [bool : 0x40000]
|
|
972
|
+
Metrics: boolean; // 0x006c (0x0004) [bool : 0x80000]
|
|
973
|
+
EOSMetrics: boolean; // 0x006c (0x0004) [bool : 0x100000]
|
|
974
|
+
MusicPlaylistSelection: boolean; // 0x006c (0x0004) [bool : 0x200000]
|
|
975
|
+
SpecialEvents: boolean; // 0x006c (0x0004) [bool : 0x400000]
|
|
976
|
+
PlayerBannerCustomization: boolean; // 0x006c (0x0004) [bool : 0x800000]
|
|
977
|
+
SecureUDP: boolean; // 0x006c (0x0004) [bool : 0x1000000]
|
|
978
|
+
PsyNet: boolean; // 0x006c (0x0004) [bool : 0x2000000]
|
|
979
|
+
OnlinePlayerStorage: boolean; // 0x006c (0x0004) [bool : 0x4000000]
|
|
980
|
+
LocalSaveData: boolean; // 0x006c (0x0004) [bool : 0x8000000]
|
|
981
|
+
CrowdV2: boolean; // 0x006c (0x0004) [bool : 0x10000000]
|
|
982
|
+
ChatBan: boolean; // 0x006c (0x0004) [bool : 0x20000000]
|
|
983
|
+
BacktraceCrashDumps: boolean; // 0x006c (0x0004) [bool : 0x40000000]
|
|
984
|
+
SpotifyButton: boolean; // 0x006c (0x0004) [bool : 0x80000000]
|
|
985
|
+
SeasonRewards: boolean; // 0x0070 (0x0004) [bool : 0x1]
|
|
986
|
+
FaceIt: boolean; // 0x0070 (0x0004) [bool : 0x2]
|
|
987
|
+
KnockOut: boolean; // 0x0070 (0x0004) [bool : 0x4]
|
|
988
|
+
OnlinePlayerTitles: boolean; // 0x0070 (0x0004) [bool : 0x8]
|
|
989
|
+
RestrictByRegion: boolean; // 0x0070 (0x0004) [bool : 0x10]
|
|
990
|
+
FirstTimeExperience: boolean; // 0x0070 (0x0004) [bool : 0x40]
|
|
991
|
+
RLBot: boolean; // 0x0070 (0x0004) [bool : 0x80]
|
|
992
|
+
UserBugReport: boolean; // 0x0070 (0x0004) [bool : 0x100]
|
|
993
|
+
SteamInput: boolean; // 0x0070 (0x0004) [bool : 0x200]
|
|
994
|
+
ReplayFXControls: boolean; // 0x0070 (0x0004) [bool : 0x4000]
|
|
995
|
+
ESportsShop: boolean; // 0x0070 (0x0004) [bool : 0x8000]
|
|
996
|
+
MatchHistory: boolean; // 0x0070 (0x0004) [bool : 0x10000]
|
|
997
|
+
DynamicRangeAudioSettings: boolean; // 0x0070 (0x0004) [bool : 0x80000]
|
|
998
|
+
QuickPlay: boolean; // 0x0070 (0x0004) [bool : 0x100000]
|
|
999
|
+
NewsPanelV2: boolean; // 0x0070 (0x0004) [bool : 0x200000]
|
|
1000
|
+
Blueprints: boolean; // 0x0070 (0x0004) [bool : 0x400000]
|
|
1001
|
+
RocketBucks: boolean; // 0x0070 (0x0004) [bool : 0x1000000]
|
|
1002
|
+
Tritip: boolean; // 0x0070 (0x0004) [bool : 0x4000000]
|
|
1003
|
+
DiscordRichPresence: boolean; // 0x0070 (0x0004) [bool : 0x10000000]
|
|
1004
|
+
SupportACreator: boolean; // 0x0070 (0x0004) [bool : 0x20000000]
|
|
1005
|
+
CinematicIntro: boolean; // 0x0070 (0x0004) [bool : 0x40000000]
|
|
1006
|
+
TinyCrowd: boolean; // 0x0070 (0x0004) [bool : 0x80000000]
|
|
1007
|
+
CrumbTrail: boolean; // 0x0074 (0x0004) [bool : 0x1]
|
|
1008
|
+
XPGatedPlaylists: boolean; // 0x0074 (0x0004) [bool : 0x4]
|
|
1009
|
+
TradeInV2: boolean; // 0x0074 (0x0004) [bool : 0x10]
|
|
1010
|
+
Football: boolean; // 0x0074 (0x0004) [bool : 0x20]
|
|
1011
|
+
RumbleSelection: boolean; // 0x0074 (0x0004) [bool : 0x40]
|
|
1012
|
+
UndersizedParty: boolean; // 0x0074 (0x0004) [bool : 0x80]
|
|
1013
|
+
StreamerSafeAudio: boolean; // 0x0074 (0x0004) [bool : 0x100]
|
|
1014
|
+
FreeplayCommands: boolean; // 0x0074 (0x0004) [bool : 0x200]
|
|
1015
|
+
Rumble_BM: boolean; // 0x0074 (0x0004) [bool : 0x400]
|
|
1016
|
+
PlayerReportingV2: boolean; // 0x0074 (0x0004) [bool : 0x800]
|
|
1017
|
+
EOSVoice: boolean; // 0x0074 (0x0004) [bool : 0x2000]
|
|
1018
|
+
QuickPostMatchRequeue: boolean; // 0x0074 (0x0004) [bool : 0x4000]
|
|
1019
|
+
TrainingNavigation: boolean; // 0x0074 (0x0004) [bool : 0x20000]
|
|
1020
|
+
TrainingManipulation: boolean; // 0x0074 (0x0004) [bool : 0x40000]
|
|
1021
|
+
FilterByColor: boolean; // 0x0074 (0x0004) [bool : 0x100000]
|
|
1022
|
+
Scoreboard: boolean; // 0x0074 (0x0004) [bool : 0x200000]
|
|
1023
|
+
DynamicMapEvents: boolean; // 0x0074 (0x0004) [bool : 0x400000]
|
|
1024
|
+
NameplateBoost: boolean; // 0x0074 (0x0004) [bool : 0x1000000]
|
|
1025
|
+
EOSGameClips: boolean; // 0x0074 (0x0004) [bool : 0x2000000]
|
|
1026
|
+
DynamicLogos: boolean; // 0x0074 (0x0004) [bool : 0x4000000]
|
|
1027
|
+
XETagging: boolean; // 0x0074 (0x0004) [bool : 0x8000000]
|
|
1028
|
+
PlayMenuV4: boolean; // 0x0074 (0x0004) [bool : 0x10000000]
|
|
1029
|
+
DemoUpgrades: boolean; // 0x0074 (0x0004) [bool : 0x20000000]
|
|
1030
|
+
QuickChatTimeStamp: boolean; // 0x0074 (0x0004) [bool : 0x40000000]
|
|
1031
|
+
SoccarPong: boolean; // 0x0074 (0x0004) [bool : 0x80000000]
|
|
1032
|
+
OnlineFreeplay: boolean; // 0x0078 (0x0004) [bool : 0x1]
|
|
1033
|
+
MatchmakingSubRegion: boolean; // 0x0078 (0x0004) [bool : 0x4]
|
|
1034
|
+
CrossbarSFX: boolean; // 0x0078 (0x0004) [bool : 0x8]
|
|
1035
|
+
RugbyIteration: boolean; // 0x0078 (0x0004) [bool : 0x10]
|
|
1036
|
+
ChallengesV2: boolean; // 0x0078 (0x0004) [bool : 0x40]
|
|
1037
|
+
PossessionExpanded: boolean; // 0x0078 (0x0004) [bool : 0x80]
|
|
1038
|
+
TargetFind: boolean; // 0x0078 (0x0004) [bool : 0x100]
|
|
1039
|
+
KeepUp: boolean; // 0x0078 (0x0004) [bool : 0x400]
|
|
1040
|
+
RocketPassUpgrades: boolean; // 0x0078 (0x0004) [bool : 0x1000]
|
|
1041
|
+
PentathlonTournaments: boolean; // 0x0078 (0x0004) [bool : 0x2000]
|
|
1042
|
+
DemolishUpdates: boolean; // 0x0078 (0x0004) [bool : 0x4000]
|
|
1043
|
+
ViralItem: boolean; // 0x0078 (0x0004) [bool : 0x8000]
|
|
1044
|
+
ThankYouMessage: boolean; // 0x0078 (0x0004) [bool : 0x10000]
|
|
1045
|
+
AttackerDemoFX: boolean; // 0x0078 (0x0004) [bool : 0x20000]
|
|
1046
|
+
NewDriverChallengesV2: boolean; // 0x0078 (0x0004) [bool : 0x40000]
|
|
1047
|
+
TextModeration: boolean; // 0x0078 (0x0004) [bool : 0x200000]
|
|
1048
|
+
FilterToggle: boolean; // 0x0078 (0x0004) [bool : 0x400000]
|
|
1049
|
+
DdosPrevention: boolean; // 0x0078 (0x0004) [bool : 0x800000]
|
|
1050
|
+
OunceEnhancements: boolean; // 0x0078 (0x0004) [bool : 0x1000000]
|
|
1051
|
+
FastFreeplay: boolean; // 0x0078 (0x0004) [bool : 0x2000000]
|
|
1052
|
+
MatchAdminMutator: boolean; // 0x0078 (0x0004) [bool : 0x4000000]
|
|
1053
|
+
Thistle: boolean; // 0x0078 (0x0004) [bool : 0x8000000]
|
|
1054
|
+
DemoFXMutator: boolean; // 0x0078 (0x0004) [bool : 0x10000000]
|
|
1055
|
+
OffProdHandling: boolean; // 0x0078 (0x0004) [bool : 0x20000000]
|
|
1056
|
+
CustomTrainingSettings: boolean; // 0x0078 (0x0004) [bool : 0x40000000]
|
|
1057
|
+
FlipResetIndicator: boolean; // 0x007c (0x0004) [bool : 0x1]
|
|
1058
|
+
NewsOverhaul: boolean; // 0x007c (0x0004) [bool : 0x2]
|
|
1059
|
+
QueueMenuChanges: boolean; // 0x007c (0x0004) [bool : 0x4]
|
|
1060
|
+
VisibleMMR: boolean; // 0x007c (0x0004) [bool : 0x8]
|
|
1061
|
+
OverrideBoostSound: boolean; // 0x007c (0x0004) [bool : 0x20]
|
|
1062
|
+
SettingsExport: boolean; // 0x007c (0x0004) [bool : 0x40]
|
|
1063
|
+
};
|
|
1064
|
+
|
|
1065
|
+
/**
|
|
1066
|
+
* Class Core.FileSystem
|
|
1067
|
+
* Size: 0x0060
|
|
1068
|
+
* Extends: UObject
|
|
1069
|
+
*/
|
|
1070
|
+
export type UFileSystem = UObject & {};
|
|
1071
|
+
|
|
1072
|
+
// FileSystem Functions
|
|
1073
|
+
// static IsCookedBuild(): boolean
|
|
1074
|
+
// static CloseLogFile(): void
|
|
1075
|
+
// static GetLogFileName(): string
|
|
1076
|
+
// static DeleteDirectoryTree(Path: string): boolean
|
|
1077
|
+
// static DeleteFile(Path: string): boolean
|
|
1078
|
+
// static AppendStringToFile(Path: string, Text: string): boolean
|
|
1079
|
+
// static SaveStringToFile(Path: string, Text: string): boolean
|
|
1080
|
+
// static SaveBytesToFile(Path: string, Bytes: number[]): boolean
|
|
1081
|
+
// static LoadFileToBytes(Path: string, OutBytes: number[], StartOffset: number, Length: number): boolean
|
|
1082
|
+
// static LoadFileToString(Path: string, OutText: string): boolean
|
|
1083
|
+
// static GetFileSize(Path: string): number
|
|
1084
|
+
// static GetFileExtensionWithoutDot(Path: string): string
|
|
1085
|
+
// static GetFileExtension(Path: string): string
|
|
1086
|
+
// static GetFilePathWithoutExtension(Path: string): string
|
|
1087
|
+
// static GetFileNameWithoutExtension(Path: string): string
|
|
1088
|
+
// static GetFilename(Path: string): string
|
|
1089
|
+
// static FindFiles(Path: string, OutFilenames: string[]): void
|
|
1090
|
+
|
|
1091
|
+
/**
|
|
1092
|
+
* Class Core.FloatProperty
|
|
1093
|
+
* Size: 0x00C8
|
|
1094
|
+
* Extends: UProperty
|
|
1095
|
+
*/
|
|
1096
|
+
export type UFloatProperty = UProperty & {};
|
|
1097
|
+
|
|
1098
|
+
/**
|
|
1099
|
+
* Class Core.Function
|
|
1100
|
+
* Size: 0x0160
|
|
1101
|
+
* Extends: UStruct
|
|
1102
|
+
*/
|
|
1103
|
+
export type UFunction = UStruct & {};
|
|
1104
|
+
|
|
1105
|
+
/**
|
|
1106
|
+
* Class Core.Global_ORS
|
|
1107
|
+
* Size: 0x0078
|
|
1108
|
+
* Extends: UObject
|
|
1109
|
+
*/
|
|
1110
|
+
export type UGlobal_ORS = UObject & {};
|
|
1111
|
+
|
|
1112
|
+
/**
|
|
1113
|
+
* Class Core.Group_ORS
|
|
1114
|
+
* Size: 0x0138
|
|
1115
|
+
* Extends: UScriptGroup_ORS
|
|
1116
|
+
*/
|
|
1117
|
+
export type UGroup_ORS = UScriptGroup_ORS & {};
|
|
1118
|
+
|
|
1119
|
+
/**
|
|
1120
|
+
* Class Core.HelpCommandlet
|
|
1121
|
+
* Size: 0x00B8
|
|
1122
|
+
* Extends: UCommandlet
|
|
1123
|
+
*/
|
|
1124
|
+
export type UHelpCommandlet = UCommandlet & {};
|
|
1125
|
+
|
|
1126
|
+
// HelpCommandlet Functions
|
|
1127
|
+
// Main(Params: string): number
|
|
1128
|
+
|
|
1129
|
+
/**
|
|
1130
|
+
* Class Core.Interface
|
|
1131
|
+
* Size: 0x0060
|
|
1132
|
+
* Extends: UObject
|
|
1133
|
+
*/
|
|
1134
|
+
export type UInterface = UObject & {};
|
|
1135
|
+
|
|
1136
|
+
/**
|
|
1137
|
+
* Class Core.IDisposable
|
|
1138
|
+
* Size: 0x0060
|
|
1139
|
+
* Extends: UInterface
|
|
1140
|
+
*/
|
|
1141
|
+
export type UIDisposable = UInterface & {};
|
|
1142
|
+
|
|
1143
|
+
// IDisposable Functions
|
|
1144
|
+
// Dispose(): void
|
|
1145
|
+
|
|
1146
|
+
/**
|
|
1147
|
+
* Class Core.Instance_ORS
|
|
1148
|
+
* Size: 0x0110
|
|
1149
|
+
* Extends: UObject
|
|
1150
|
+
*/
|
|
1151
|
+
export type UInstance_ORS = UObject & {};
|
|
1152
|
+
|
|
1153
|
+
/**
|
|
1154
|
+
* Class Core.InterfaceProperty
|
|
1155
|
+
* Size: 0x00D8
|
|
1156
|
+
* Extends: UProperty
|
|
1157
|
+
*/
|
|
1158
|
+
export type UInterfaceProperty = UProperty & {};
|
|
1159
|
+
|
|
1160
|
+
/**
|
|
1161
|
+
* Class Core.IntProperty
|
|
1162
|
+
* Size: 0x00C8
|
|
1163
|
+
* Extends: UProperty
|
|
1164
|
+
*/
|
|
1165
|
+
export type UIntProperty = UProperty & {};
|
|
1166
|
+
|
|
1167
|
+
/**
|
|
1168
|
+
* Class Core.Linker
|
|
1169
|
+
* Size: 0x01E8
|
|
1170
|
+
* Extends: UObject
|
|
1171
|
+
*/
|
|
1172
|
+
export type ULinker = UObject & {};
|
|
1173
|
+
|
|
1174
|
+
/**
|
|
1175
|
+
* Class Core.LinkerLoad
|
|
1176
|
+
* Size: 0x0810
|
|
1177
|
+
* Extends: ULinker
|
|
1178
|
+
*/
|
|
1179
|
+
export type ULinkerLoad = ULinker & {};
|
|
1180
|
+
|
|
1181
|
+
/**
|
|
1182
|
+
* Class Core.LinkerSave
|
|
1183
|
+
* Size: 0x02A8
|
|
1184
|
+
* Extends: ULinker
|
|
1185
|
+
*/
|
|
1186
|
+
export type ULinkerSave = ULinker & {};
|
|
1187
|
+
|
|
1188
|
+
/**
|
|
1189
|
+
* Class Core.MapProperty
|
|
1190
|
+
* Size: 0x00D8
|
|
1191
|
+
* Extends: UProperty
|
|
1192
|
+
*/
|
|
1193
|
+
export type UMapProperty = UProperty & {};
|
|
1194
|
+
|
|
1195
|
+
/**
|
|
1196
|
+
* Class Core.MetaData
|
|
1197
|
+
* Size: 0x00B0
|
|
1198
|
+
* Extends: UObject
|
|
1199
|
+
*/
|
|
1200
|
+
export type UMetaData = UObject & {};
|
|
1201
|
+
|
|
1202
|
+
/**
|
|
1203
|
+
* Class Core.NameProperty
|
|
1204
|
+
* Size: 0x00C8
|
|
1205
|
+
* Extends: UProperty
|
|
1206
|
+
*/
|
|
1207
|
+
export type UNameProperty = UProperty & {};
|
|
1208
|
+
|
|
1209
|
+
/**
|
|
1210
|
+
* Class Core.ObjectProvider
|
|
1211
|
+
* Size: 0x01E0
|
|
1212
|
+
* Extends: UComponent
|
|
1213
|
+
*/
|
|
1214
|
+
export type UObjectProvider = UComponent & {
|
|
1215
|
+
VfTable_FObjectDestructionSubscriber: FPointer; // 0x0070 (0x0008) [FPointer]
|
|
1216
|
+
MyObjects: UObject[]; // 0x0078 (0x0010) [TArray<UObject*>]
|
|
1217
|
+
ObjectRefs: FMap_Mirror; // 0x0088 (0x0050) [FMap_Mirror]
|
|
1218
|
+
TreeObjects: UObject[]; // 0x00d8 (0x0010) [TArray<UObject*>]
|
|
1219
|
+
SubscribedToAdds: FObjectProviderSubscription[]; // 0x00e8 (0x0010) [TArray<FObjectProviderSubscription>]
|
|
1220
|
+
SubscribedToRemoves: FObjectProviderSubscription[]; // 0x00f8 (0x0010) [TArray<FObjectProviderSubscription>]
|
|
1221
|
+
SubscribedToLists: FObjectProviderSubscription[]; // 0x0108 (0x0010) [TArray<FObjectProviderSubscription>]
|
|
1222
|
+
Injections: FArray_Mirror; // 0x0118 (0x0010) [FArray_Mirror]
|
|
1223
|
+
InterfaceInjections: FArray_Mirror; // 0x0128 (0x0010) [FArray_Mirror]
|
|
1224
|
+
PendingInjectionClasses: UObject[]; // 0x0138 (0x0010) [TArray<UObject*>]
|
|
1225
|
+
PendingCallbacks: FObjectProviderPendingCallback[]; // 0x0148 (0x0010) [TArray<FObjectProviderPendingCallback>]
|
|
1226
|
+
bTriggeringCallbacks: number; // 0x0158 (0x0001) [uint8]
|
|
1227
|
+
Parent: UObjectProvider; // 0x0160 (0x0008) [UObjectProvider*]
|
|
1228
|
+
Children: UObjectProvider[]; // 0x0168 (0x0010) [TArray<UObjectProvider*>]
|
|
1229
|
+
Proxies: UObjectProvider[]; // 0x0178 (0x0010) [TArray<UObjectProvider*>]
|
|
1230
|
+
PendingInjectionCallbacks: FObjectProviderPendingCallback[]; // 0x0188 (0x0010) [TArray<FObjectProviderPendingCallback>]
|
|
1231
|
+
__ObjectSubscriptionCallback__Delegate: FScriptDelegate; // 0x0198 (0x0018) [FScriptDelegate]
|
|
1232
|
+
__ObjectListSubscriptionCallback__Delegate: FScriptDelegate; // 0x01b0 (0x0018) [FScriptDelegate]
|
|
1233
|
+
__ObjectChangeCallback__Delegate: FScriptDelegate; // 0x01c8 (0x0018) [FScriptDelegate]
|
|
1234
|
+
};
|
|
1235
|
+
|
|
1236
|
+
// ObjectProvider Functions
|
|
1237
|
+
// SetParent(InParent: UObjectProvider): void
|
|
1238
|
+
// RemoveProxy(InProxy: UObjectProvider): void
|
|
1239
|
+
// AddProxy(InProxy: UObjectProvider): void
|
|
1240
|
+
// SetSingleton(ObjClass: UObject, Replacement: UObject): void
|
|
1241
|
+
// Replace(Existing: UObject, Replacement: UObject): void
|
|
1242
|
+
// AddAndRemoveObjects(AddObjects: UObject[], RemoveObjects: UObject[]): void
|
|
1243
|
+
// RemoveObjects(InObjects: UObject[]): void
|
|
1244
|
+
// RemoveAllObjects(ObjectClass: UObject): void
|
|
1245
|
+
// RemoveObject(Obj: UObject): void
|
|
1246
|
+
// AddObjects(InObjects: UObject[]): void
|
|
1247
|
+
// AddObject(Obj: UObject): void
|
|
1248
|
+
// GetExactCount(ObjClass: UObject): number
|
|
1249
|
+
// GetCount(ObjClass: UObject): number
|
|
1250
|
+
// GetOrCreate(ObjClass: UObject): UObject
|
|
1251
|
+
// GetExact(ObjClass: UObject): UObject
|
|
1252
|
+
// GetUnsafe(ObjClass: UObject): UObject
|
|
1253
|
+
// Get(ObjClass: UObject): UObject
|
|
1254
|
+
// AllObjects(BaseClass: UObject, Obj: UObject, InterfaceClass: UInterface): void
|
|
1255
|
+
// IsRegisteredForInjection(Subscriber: UObject): boolean
|
|
1256
|
+
// InjectDelayed(Subscriber: UObject): void
|
|
1257
|
+
// Inject(Subscriber: UObject): void
|
|
1258
|
+
// UnsubscribeAll(Subscriber: UObject): void
|
|
1259
|
+
// Unsubscribe(Callback: FScriptDelegate, Callback2: FScriptDelegate): void
|
|
1260
|
+
// SubscribeList(BaseClass: UObject, Callback: FScriptDelegate): void
|
|
1261
|
+
// SubscribeOnce(BaseClass: UObject, OnAdd: FScriptDelegate, OnRemove: FScriptDelegate): void
|
|
1262
|
+
// Subscribe(BaseClass: UObject, OnAdd: FScriptDelegate, OnRemove: FScriptDelegate): void
|
|
1263
|
+
// ObjectChangeCallback(): void
|
|
1264
|
+
// ObjectListSubscriptionCallback(Provider: UObjectProvider): void
|
|
1265
|
+
// ObjectSubscriptionCallback(Obj: UObject): void
|
|
1266
|
+
|
|
1267
|
+
/**
|
|
1268
|
+
* Class Core.ObjectRedirector
|
|
1269
|
+
* Size: 0x0068
|
|
1270
|
+
* Extends: UObject
|
|
1271
|
+
*/
|
|
1272
|
+
export type UObjectRedirector = UObject & {};
|
|
1273
|
+
|
|
1274
|
+
/**
|
|
1275
|
+
* Class Core.ObjectSerializer
|
|
1276
|
+
* Size: 0x0070
|
|
1277
|
+
* Extends: UObject
|
|
1278
|
+
*/
|
|
1279
|
+
export type UObjectSerializer = UObject & {};
|
|
1280
|
+
|
|
1281
|
+
/**
|
|
1282
|
+
* Class Core.ObjectUtil
|
|
1283
|
+
* Size: 0x0060
|
|
1284
|
+
* Extends: UObject
|
|
1285
|
+
*/
|
|
1286
|
+
export type UObjectUtil = UObject & {};
|
|
1287
|
+
|
|
1288
|
+
// ObjectUtil Functions
|
|
1289
|
+
// static FindClass(ClassName: FName): UObject
|
|
1290
|
+
// static ClearNaNValues(InObject: UObject): void
|
|
1291
|
+
// static IdenticalDeep(Left: UObject, Right: UObject): boolean
|
|
1292
|
+
// static Identical(Left: UObject, Right: UObject): boolean
|
|
1293
|
+
// static InitProperties(InObject: UObject): void
|
|
1294
|
+
// static AllCDOs(BaseClass: UObject, OutCDO: UObject, bIncludeAbstract: boolean): void
|
|
1295
|
+
// static GetCDO(InClass: UObject): UObject
|
|
1296
|
+
|
|
1297
|
+
/**
|
|
1298
|
+
* Class Core.Package
|
|
1299
|
+
* Size: 0x0148
|
|
1300
|
+
* Extends: UObject
|
|
1301
|
+
*/
|
|
1302
|
+
export type UPackage = UObject & {};
|
|
1303
|
+
|
|
1304
|
+
/**
|
|
1305
|
+
* Class Core.PackageMap
|
|
1306
|
+
* Size: 0x0118
|
|
1307
|
+
* Extends: UObject
|
|
1308
|
+
*/
|
|
1309
|
+
export type UPackageMap = UObject & {};
|
|
1310
|
+
|
|
1311
|
+
/**
|
|
1312
|
+
* Class Core.PropertyChangeDispatcher
|
|
1313
|
+
* Size: 0x0070
|
|
1314
|
+
* Extends: UObject
|
|
1315
|
+
*/
|
|
1316
|
+
export type UPropertyChangeDispatcher = UObject & {};
|
|
1317
|
+
|
|
1318
|
+
/**
|
|
1319
|
+
* Class Core.QWordProperty
|
|
1320
|
+
* Size: 0x00C8
|
|
1321
|
+
* Extends: UProperty
|
|
1322
|
+
*/
|
|
1323
|
+
export type UQWordProperty = UProperty & {};
|
|
1324
|
+
|
|
1325
|
+
/**
|
|
1326
|
+
* Class Core.RotatorConversions
|
|
1327
|
+
* Size: 0x0060
|
|
1328
|
+
* Extends: UObject
|
|
1329
|
+
*/
|
|
1330
|
+
export type URotatorConversions = UObject & {};
|
|
1331
|
+
|
|
1332
|
+
// RotatorConversions Functions
|
|
1333
|
+
// static GetAsRadians(InRotator: FRotator): FRotatorRadians
|
|
1334
|
+
// static GetAsDegrees(InRotator: FRotator): FRotatorDegrees
|
|
1335
|
+
|
|
1336
|
+
/**
|
|
1337
|
+
* Class Core.ScriptStruct
|
|
1338
|
+
* Size: 0x0158
|
|
1339
|
+
* Extends: UStruct
|
|
1340
|
+
*/
|
|
1341
|
+
export type UScriptStruct = UStruct & {};
|
|
1342
|
+
|
|
1343
|
+
/**
|
|
1344
|
+
* Class Core.StringMap
|
|
1345
|
+
* Size: 0x00D8
|
|
1346
|
+
* Extends: UComponent
|
|
1347
|
+
*/
|
|
1348
|
+
export type UStringMap = UComponent & {
|
|
1349
|
+
Map: FMap_Mirror; // 0x0070 (0x0050) [FMap_Mirror]
|
|
1350
|
+
__PairCallback__Delegate: FScriptDelegate; // 0x00c0 (0x0018) [FScriptDelegate]
|
|
1351
|
+
};
|
|
1352
|
+
|
|
1353
|
+
// StringMap Functions
|
|
1354
|
+
// ForEach(Callback: FScriptDelegate): void
|
|
1355
|
+
// Append(Other: UStringMap): void
|
|
1356
|
+
// Contains(Key: string): boolean
|
|
1357
|
+
// Remove(Key: string): void
|
|
1358
|
+
// TryGet(Key: string, OutValue: string): boolean
|
|
1359
|
+
// Get(Key: string): string
|
|
1360
|
+
// Set(Key: string, Value: string): void
|
|
1361
|
+
// PairCallback(Key: string, Value: string): void
|
|
1362
|
+
|
|
1363
|
+
/**
|
|
1364
|
+
* Class Core.StringObjectMap
|
|
1365
|
+
* Size: 0x00C0
|
|
1366
|
+
* Extends: UComponent
|
|
1367
|
+
*/
|
|
1368
|
+
export type UStringObjectMap = UComponent & {
|
|
1369
|
+
Map: FMap_Mirror; // 0x0070 (0x0050) [FMap_Mirror]
|
|
1370
|
+
};
|
|
1371
|
+
|
|
1372
|
+
// StringObjectMap Functions
|
|
1373
|
+
// Contains(Key: string): boolean
|
|
1374
|
+
// Remove(Key: string): void
|
|
1375
|
+
// TryGetObject(Key: string, OutValue: UObject): boolean
|
|
1376
|
+
// TryGet(): void
|
|
1377
|
+
// GetObject(Key: string): UObject
|
|
1378
|
+
// Get(): void
|
|
1379
|
+
// Set(Key: string, Value: UObject): void
|
|
1380
|
+
|
|
1381
|
+
/**
|
|
1382
|
+
* Class Core.StrProperty
|
|
1383
|
+
* Size: 0x00C8
|
|
1384
|
+
* Extends: UProperty
|
|
1385
|
+
*/
|
|
1386
|
+
export type UStrProperty = UProperty & {};
|
|
1387
|
+
|
|
1388
|
+
/**
|
|
1389
|
+
* Class Core.StructProperty
|
|
1390
|
+
* Size: 0x00D0
|
|
1391
|
+
* Extends: UProperty
|
|
1392
|
+
*/
|
|
1393
|
+
export type UStructProperty = UProperty & {};
|
|
1394
|
+
|
|
1395
|
+
/**
|
|
1396
|
+
* Class Core.Subscription
|
|
1397
|
+
* Size: 0x0078
|
|
1398
|
+
* Extends: UObject
|
|
1399
|
+
*/
|
|
1400
|
+
export type USubscription = UObject & {
|
|
1401
|
+
__SubscriberCallback__Delegate: FScriptDelegate; // 0x0060 (0x0018) [FScriptDelegate]
|
|
1402
|
+
};
|
|
1403
|
+
|
|
1404
|
+
// Subscription Functions
|
|
1405
|
+
// static __Subscription__TriggerAll_0x1(S: USubscription): void
|
|
1406
|
+
// static GetNone(): USubscription
|
|
1407
|
+
// static TriggerAll(Subscriptions: USubscription[]): void
|
|
1408
|
+
// static Create(InCallback: FScriptDelegate): USubscription
|
|
1409
|
+
// Dispose(): void
|
|
1410
|
+
// TriggerCallback(): void
|
|
1411
|
+
// SetCallback(InCallback: FScriptDelegate): void
|
|
1412
|
+
// SubscriberCallback(): void
|
|
1413
|
+
|
|
1414
|
+
/**
|
|
1415
|
+
* Class Core.SubscriptionCollection_ORS
|
|
1416
|
+
* Size: 0x0080
|
|
1417
|
+
* Extends: UObject
|
|
1418
|
+
*/
|
|
1419
|
+
export type USubscriptionCollection_ORS = UObject & {};
|
|
1420
|
+
|
|
1421
|
+
/**
|
|
1422
|
+
* Class Core.Subsystem
|
|
1423
|
+
* Size: 0x0068
|
|
1424
|
+
* Extends: UObject
|
|
1425
|
+
*/
|
|
1426
|
+
export type USubsystem = UObject & {
|
|
1427
|
+
VfTable_FExec: FPointer; // 0x0060 (0x0008) [FPointer]
|
|
1428
|
+
};
|
|
1429
|
+
|
|
1430
|
+
/**
|
|
1431
|
+
* Class Core.System
|
|
1432
|
+
* Size: 0x0160
|
|
1433
|
+
* Extends: USubsystem
|
|
1434
|
+
*/
|
|
1435
|
+
export type USystem = USubsystem & {
|
|
1436
|
+
StaleCacheDays: number; // 0x0068 (0x0004) [int32]
|
|
1437
|
+
MaxStaleCacheSize: number; // 0x006c (0x0004) [int32]
|
|
1438
|
+
MaxOverallCacheSize: number; // 0x0070 (0x0004) [int32]
|
|
1439
|
+
PackageSizeSoftLimit: number; // 0x0074 (0x0004) [int32]
|
|
1440
|
+
AsyncIOBandwidthLimit: number; // 0x0078 (0x0004) [float]
|
|
1441
|
+
SavePath: string; // 0x0080 (0x0010) [FString]
|
|
1442
|
+
CachePath: string; // 0x0090 (0x0010) [FString]
|
|
1443
|
+
CacheExt: string; // 0x00a0 (0x0010) [FString]
|
|
1444
|
+
Paths: string[]; // 0x00b0 (0x0010) [TArray<FString>]
|
|
1445
|
+
SeekFreePCPaths: string[]; // 0x00c0 (0x0010) [TArray<FString>]
|
|
1446
|
+
ScriptPaths: string[]; // 0x00d0 (0x0010) [TArray<FString>]
|
|
1447
|
+
FRScriptPaths: string[]; // 0x00e0 (0x0010) [TArray<FString>]
|
|
1448
|
+
CutdownPaths: string[]; // 0x00f0 (0x0010) [TArray<FString>]
|
|
1449
|
+
Suppress: FName[]; // 0x0100 (0x0010) [TArray<FName>]
|
|
1450
|
+
SuppressPublic: FName[]; // 0x0110 (0x0010) [TArray<FName>]
|
|
1451
|
+
Extensions: string[]; // 0x0120 (0x0010) [TArray<FString>]
|
|
1452
|
+
SeekFreePCExtensions: string[]; // 0x0130 (0x0010) [TArray<FString>]
|
|
1453
|
+
LocalizationPaths: string[]; // 0x0140 (0x0010) [TArray<FString>]
|
|
1454
|
+
TextureFileCacheExtension: string; // 0x0150 (0x0010) [FString]
|
|
1455
|
+
};
|
|
1456
|
+
|
|
1457
|
+
/**
|
|
1458
|
+
* Class Core.TAsyncResult
|
|
1459
|
+
* Size: 0x00D0
|
|
1460
|
+
* Extends: UAsyncTask
|
|
1461
|
+
*/
|
|
1462
|
+
export type UTAsyncResult = UAsyncTask & {};
|
|
1463
|
+
|
|
1464
|
+
/**
|
|
1465
|
+
* Class Core.TextBuffer
|
|
1466
|
+
* Size: 0x0090
|
|
1467
|
+
* Extends: UObject
|
|
1468
|
+
*/
|
|
1469
|
+
export type UTextBuffer = UObject & {};
|
|
1470
|
+
|
|
1471
|
+
/**
|
|
1472
|
+
* Class Core.TextBufferFactory
|
|
1473
|
+
* Size: 0x00B8
|
|
1474
|
+
* Extends: UFactory
|
|
1475
|
+
*/
|
|
1476
|
+
export type UTextBufferFactory = UFactory & {};
|
|
1477
|
+
|
|
1478
|
+
/**
|
|
1479
|
+
* Class Core.UTF8
|
|
1480
|
+
* Size: 0x0060
|
|
1481
|
+
* Extends: UObject
|
|
1482
|
+
*/
|
|
1483
|
+
export type UUTF8 = UObject & {};
|
|
1484
|
+
|
|
1485
|
+
// UTF8 Functions
|
|
1486
|
+
// static DecodeInline(Input: number[], Output: string): void
|
|
1487
|
+
// static Decode(Input: number[]): string
|
|
1488
|
+
// static EncodeInline(Input: string, Output: number[]): void
|
|
1489
|
+
// static Encode(Input: string): number[]
|