@nativewrappers/server 0.0.83 → 0.0.85
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/entities/BaseEntity.d.ts +2 -2
- package/entities/BaseEntity.js +1 -1
- package/entities/Player.d.ts +1 -1
- package/entities/Player.js +1 -1
- package/package.json +1 -1
package/entities/BaseEntity.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ClassTypes } from "
|
|
1
|
+
import { ClassTypes } from "../common/utils/ClassTypes";
|
|
2
2
|
import type { eEntityType } from "../enum/eEntityType";
|
|
3
3
|
import type { PopulationType } from "../enum/PopulationType";
|
|
4
4
|
import type { Hash } from "../type/Hash";
|
|
5
|
-
import type { OrphanMode } from "
|
|
5
|
+
import type { OrphanMode } from "../enum/OrphanMode";
|
|
6
6
|
import { Vector3, Vector4 } from "../common/utils/Vector";
|
|
7
7
|
export declare class BaseEntity {
|
|
8
8
|
protected handle: number;
|
package/entities/BaseEntity.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var __defProp = Object.defineProperty;
|
|
2
2
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
3
|
import cfx from "../cfx";
|
|
4
|
-
import { ClassTypes } from "
|
|
4
|
+
import { ClassTypes } from "../common/utils/ClassTypes";
|
|
5
5
|
import { Vector3, Vector4 } from "../common/utils/Vector";
|
|
6
6
|
class BaseEntity {
|
|
7
7
|
constructor(handle) {
|
package/entities/Player.d.ts
CHANGED
package/entities/Player.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var __defProp = Object.defineProperty;
|
|
2
2
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
3
|
import cfx from "../cfx";
|
|
4
|
-
import { ClassTypes } from "
|
|
4
|
+
import { ClassTypes } from "../common/utils/ClassTypes";
|
|
5
5
|
import { Ped } from "./Ped";
|
|
6
6
|
import { cleanPlayerName } from "../common/utils/cleanPlayerName";
|
|
7
7
|
import { Vector3 } from "../common/utils/Vector";
|