@cybermp-community/client-types 2.1.0 → 2.1.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/dist/classes/Vector2.d.ts +2 -2
- package/dist/classes/Vector3.d.ts +3 -3
- package/dist/classes/Vector4.d.ts +4 -4
- package/dist/classes/codeware/Callback/index.d.ts +4 -0
- package/dist/classes/codeware/Localization/index.d.ts +1 -0
- package/dist/classes/codeware/UI/Popups/index.d.ts +8 -0
- package/dist/classes/codeware/UI/Screen/index.d.ts +3 -0
- package/dist/classes/codeware/UI/TextInput/index.d.ts +2 -0
- package/dist/classes/codeware/UI/index.d.ts +3 -2
- package/dist/classes/codeware/index.d.ts +3 -2
- package/dist/classes/gameScriptableSystemsContainer.d.ts +0 -1
- package/dist/classes/index.d.ts +15832 -0
- package/dist/enums/codeware/index.d.ts +1 -0
- package/dist/enums/index.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/precomputed/index.d.ts +0 -2
- package/package.json +7 -4
- package/dist/precomputed/codeware.d.ts +0 -3
|
@@ -2,10 +2,10 @@ import type * as C from "./index";
|
|
|
2
2
|
|
|
3
3
|
// THIS CODE IS GENERATED, PLEASE DO NOT EDIT THIS
|
|
4
4
|
export class Vector4 {
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
5
|
+
"w": number;
|
|
6
|
+
"x": number;
|
|
7
|
+
"y": number;
|
|
8
|
+
"z": number;
|
|
9
9
|
static "ClampLength"(self: Vector4, min: number, max: number): Vector4;
|
|
10
10
|
static "Cross"(a: Vector4, b: Vector4): Vector4;
|
|
11
11
|
static "Distance"(from: Vector4, to: Vector4): number;
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
// THIS CODE IS GENERATED, PLEASE DO NOT EDIT THIS
|
|
2
|
+
export * from "./CallbackSystem";
|
|
3
|
+
export * from "./CallbackSystemEvent";
|
|
4
|
+
export * from "./CallbackSystemHandler";
|
|
5
|
+
export * from "./CallbackSystemTarget";
|
|
2
6
|
export * from "./Targets";
|
|
3
7
|
export * from "./Events";
|
|
@@ -1,3 +1,11 @@
|
|
|
1
1
|
// THIS CODE IS GENERATED, PLEASE DO NOT EDIT THIS
|
|
2
|
+
export * from "./CustomPopup";
|
|
3
|
+
export * from "./InGamePopup";
|
|
4
|
+
export * from "./InGamePopupContent";
|
|
5
|
+
export * from "./InGamePopupFooter";
|
|
6
|
+
export * from "./InGamePopupHeader";
|
|
7
|
+
export * from "./InMenuPopup";
|
|
8
|
+
export * from "./InMenuPopupContent";
|
|
9
|
+
export * from "./InMenuPopupFooter";
|
|
2
10
|
export * from "./Manager";
|
|
3
11
|
export * from "./Events";
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
// THIS CODE IS GENERATED, PLEASE DO NOT EDIT THIS
|
|
2
|
-
export * from "./
|
|
2
|
+
export * from "./inkSystem";
|
|
3
3
|
export * from "./TextInput";
|
|
4
|
-
export * from "./Buttons";
|
|
5
4
|
export * from "./Popups";
|
|
6
5
|
export * from "./Screen";
|
|
6
|
+
export * from "./ButtonHints";
|
|
7
|
+
export * from "./Buttons";
|
|
7
8
|
export * from "./Styles";
|
|
8
9
|
export * from "./Core";
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
// THIS CODE IS GENERATED, PLEASE DO NOT EDIT THIS
|
|
2
|
+
export * from "./Codeware";
|
|
2
3
|
export * from "./Localization";
|
|
4
|
+
export * from "./UI";
|
|
5
|
+
export * from "./Callback";
|
|
3
6
|
export * from "./Reflection";
|
|
4
7
|
export * from "./Scheduling";
|
|
5
8
|
export * from "./Scripting";
|
|
6
|
-
export * from "./Callback";
|
|
7
9
|
export * from "./Device";
|
|
8
10
|
export * from "./Entity";
|
|
9
11
|
export * from "./Depot";
|
|
10
12
|
export * from "./World";
|
|
11
|
-
export * from "./UI";
|
|
@@ -3,6 +3,5 @@ import type * as C from "./index";
|
|
|
3
3
|
|
|
4
4
|
// THIS CODE IS GENERATED, PLEASE DO NOT EDIT THIS
|
|
5
5
|
export class gameScriptableSystemsContainer extends C.gameIScriptableSystemsContainer {
|
|
6
|
-
"Get"(systemName: string): M.Handle<C.gameScriptableSystem>;
|
|
7
6
|
"QueueRequest"(request: M.Handle<C.gameScriptableSystemRequest>): void;
|
|
8
7
|
}
|