@nativewrappers/redm 0.0.80 → 0.0.81
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/Attribute.js +143 -0
- package/Controls.js +22 -0
- package/Game.d.ts +2 -2
- package/Game.js +18 -0
- package/GameConstants.d.ts +1 -1
- package/GameConstants.js +24 -0
- package/Model.js +153 -0
- package/RawControls.d.ts +1 -1
- package/RawControls.js +22 -0
- package/RelationshipGroup.js +72 -0
- package/Volume.d.ts +1 -1
- package/Volume.js +32 -0
- package/common/Command.js +111 -0
- package/common/Convar.js +58 -0
- package/common/GlobalData.js +16 -0
- package/common/Kvp.js +137 -0
- package/common/Resource.js +54 -0
- package/common/decors/Events.js +170 -0
- package/common/net/NetworkedMap.js +225 -0
- package/common/utils/ClassTypes.js +15 -0
- package/common/utils/Color.js +33 -0
- package/common/utils/Delay.d.ts +1 -0
- package/common/utils/Delay.js +6 -0
- package/common/utils/Maths.js +18 -0
- package/common/utils/Point.d.ts +9 -0
- package/common/utils/Point.js +36 -0
- package/common/utils/PointF.d.ts +1 -1
- package/common/utils/PointF.js +18 -0
- package/common/utils/Quaternion.d.ts +1 -1
- package/common/utils/Quaternion.js +33 -0
- package/common/utils/Vector.js +589 -0
- package/common/utils/cleanPlayerName.js +17 -0
- package/common/utils/enumValues.js +20 -0
- package/common/utils/getStringFromUInt8Array.js +6 -0
- package/common/utils/getUInt32FromUint8Array.js +6 -0
- package/definitions/Citizen.d.js +0 -0
- package/definitions/index.d.js +0 -0
- package/definitions/redm.d.js +0 -0
- package/entities/BaseEntity.d.ts +1 -1
- package/entities/BaseEntity.js +99 -0
- package/entities/Entity.d.ts +1 -1
- package/entities/Entity.js +99 -0
- package/entities/Ped.d.ts +1 -1
- package/entities/Ped.js +336 -0
- package/entities/Pickup.d.ts +4 -0
- package/entities/Pickup.js +14 -0
- package/entities/Player.js +57 -0
- package/entities/Prop.js +11 -0
- package/entities/Vehicle.d.ts +1 -1
- package/entities/Vehicle.js +23 -0
- package/enums/Attributes.js +56 -0
- package/enums/Entity.js +20 -0
- package/enums/Keys.js +809 -0
- package/enums/Ped.js +31 -0
- package/enums/RawKeys.js +234 -0
- package/enums/Relationship.js +13 -0
- package/enums/VehicleSeat.js +17 -0
- package/interfaces/Dimensions.d.ts +1 -1
- package/interfaces/Dimensions.js +0 -0
- package/package.json +2 -2
- package/types/Throwable.js +0 -0
- package/utils/Native.js +8 -0
- package/world/createDraftVehicle.d.ts +2 -2
- package/world/createDraftVehicle.js +32 -0
- package/world/createPed.d.ts +2 -2
- package/world/createPed.js +28 -0
- package/world/createProp.d.ts +1 -1
- package/world/createProp.js +28 -0
- package/world/createVehicle.d.ts +2 -2
- package/world/createVehicle.js +28 -0
- package/common/index.d.ts +0 -8
- package/common/utils/Vector2.d.ts +0 -1
- package/common/utils/Vector3.d.ts +0 -1
- package/common/utils/Vector4.d.ts +0 -1
- package/common/utils/index.d.ts +0 -12
- package/entities/index.d.ts +0 -4
- package/enums/index.d.ts +0 -6
- package/index.d.ts +0 -12
- package/index.js +0 -3762
- package/utils/index.d.ts +0 -2
- package/world/index.d.ts +0 -4
- /package/{game/index.d.ts → common/types.js} +0 -0
package/utils/index.d.ts
DELETED
package/world/index.d.ts
DELETED
|
File without changes
|