@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.
@@ -1,6 +1,6 @@
1
1
  // THIS CODE IS GENERATED, PLEASE DO NOT EDIT THIS
2
2
  export class Vector2 {
3
- "X": number;
4
- "Y": number;
3
+ "x": number;
4
+ "y": number;
5
5
  static "Normalize"(a: Vector2): Vector2;
6
6
  }
@@ -1,7 +1,7 @@
1
1
  // THIS CODE IS GENERATED, PLEASE DO NOT EDIT THIS
2
2
  export class Vector3 {
3
- "X": number;
4
- "Y": number;
5
- "Z": number;
3
+ "x": number;
4
+ "y": number;
5
+ "z": number;
6
6
  static "Lerp"(a: Vector3, b: Vector3, t: number): Vector3;
7
7
  }
@@ -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
- "W": number;
6
- "X": number;
7
- "Y": number;
8
- "Z": number;
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,4 +1,5 @@
1
1
  // THIS CODE IS GENERATED, PLEASE DO NOT EDIT THIS
2
+ export * from "./LocalizationSystem";
2
3
  export * from "./Requests";
3
4
  export * from "./Watchers";
4
5
  export * from "./Module";
@@ -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,3 +1,6 @@
1
1
  // THIS CODE IS GENERATED, PLEASE DO NOT EDIT THIS
2
+ export * from "./ScreenHelper";
3
+ export * from "./VirtualResolutionData";
4
+ export * from "./VirtualResolutionWatcher";
2
5
  export * from "./Targets";
3
6
  export * from "./Events";
@@ -1,2 +1,4 @@
1
1
  // THIS CODE IS GENERATED, PLEASE DO NOT EDIT THIS
2
+ export * from "./HubTextInput";
3
+ export * from "./TextInput";
2
4
  export * from "./Parts";
@@ -1,8 +1,9 @@
1
1
  // THIS CODE IS GENERATED, PLEASE DO NOT EDIT THIS
2
- export * from "./ButtonHints";
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
  }