├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ └── bump-package-version.js └── workflows │ ├── config.yml │ └── publish.yml ├── .gitignore ├── .prettierrc ├── CONTRIBUTING.md ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── docs ├── .nojekyll ├── CNAME ├── assets │ ├── highlight.css │ ├── icons.css │ ├── icons.png │ ├── icons@2x.png │ ├── main.js │ ├── search.js │ ├── style.css │ ├── widgets.png │ └── widgets@2x.png ├── classes │ ├── AbstractUIMenuPanel.html │ ├── Audio.html │ ├── Blip.html │ ├── Camera.html │ ├── Checkpoint.html │ ├── Color.html │ ├── Container.html │ ├── Crypto.html │ ├── Effects.html │ ├── Entity.html │ ├── EntityBone.html │ ├── EntityBoneCollection.html │ ├── Fading.html │ ├── Game.html │ ├── GameplayCamera.html │ ├── Hud.html │ ├── InstructionalButtons.html │ ├── InvalidWeaponComponent.html │ ├── ListItem.html │ ├── LiteEvent.html │ ├── LoadingPrompt.html │ ├── Maths.html │ ├── Menu.html │ ├── MenuControl.html │ ├── MenuControls.html │ ├── MenuSettings.html │ ├── Model.html │ ├── NetworkedScene.html │ ├── Notification.html │ ├── ParticleEffect.html │ ├── ParticleEffectAsset.html │ ├── Ped.html │ ├── PedBone.html │ ├── PedBoneCollection.html │ ├── Pickup.html │ ├── Player.html │ ├── Point.html │ ├── PointF.html │ ├── Prop.html │ ├── Quaternion.html │ ├── RaycastResult.html │ ├── Rectangle.html │ ├── RelationshipGroup.html │ ├── Rope.html │ ├── Scaleform.html │ ├── Screen.html │ ├── Size.html │ ├── Sprite.html │ ├── String.html │ ├── TaskSequence.html │ ├── Tasks.html │ ├── Text.html │ ├── Timerbar.html │ ├── UIMenuCheckboxItem.html │ ├── UIMenuColorPanel.html │ ├── UIMenuGridPanel.html │ ├── UIMenuItem.html │ ├── UIMenuListItem.html │ ├── UIMenuPercentagePanel.html │ ├── UIMenuSeparatorItem.html │ ├── UIMenuSliderItem.html │ ├── UIMenuStatisticsPanel.html │ ├── UIMenuStatisticsPanelItem.html │ ├── Vector3.html │ ├── Vehicle.html │ ├── VehicleDoor.html │ ├── VehicleDoorCollection.html │ ├── VehicleMod.html │ ├── VehicleModCollection.html │ ├── VehicleToggleMod.html │ ├── VehicleWheel.html │ ├── VehicleWheelCollection.html │ ├── VehicleWindow.html │ ├── VehicleWindowCollection.html │ ├── Weapon.html │ ├── WeaponAsset.html │ └── World.html ├── enums │ ├── Alignment.html │ ├── AmmoType.html │ ├── AnimationFlags.html │ ├── AudioFlag.html │ ├── BadgeStyle.html │ ├── BlipColor.html │ ├── BlipSprite.html │ ├── Bone.html │ ├── CameraShake.html │ ├── CheckboxStyle.html │ ├── CheckpointCustomIconStyle.html │ ├── CheckpointIcon.html │ ├── CloudHat.html │ ├── ComponentAttachmentPoint.html │ ├── Control.html │ ├── CursorSprite.html │ ├── DrivingStyle.html │ ├── ExplosionType.html │ ├── FiringPattern.html │ ├── Font.html │ ├── ForceType.html │ ├── Gender.html │ ├── HelmetType.html │ ├── HudColor.html │ ├── HudComponent.html │ ├── InputMode.html │ ├── IntersectOptions.html │ ├── InvertAxisFlags.html │ ├── Language.html │ ├── LeaveVehicleFlags.html │ ├── LoadingSpinnerType.html │ ├── MarkerType.html │ ├── MaterialHash.html │ ├── MenuAlignment.html │ ├── NotificationType.html │ ├── ParachuteLandingType.html │ ├── ParachuteState.html │ ├── PedHash.html │ ├── RadioStation.html │ ├── RagdollType.html │ ├── Relationship.html │ ├── RopeType.html │ ├── ScreenEffect.html │ ├── SpeechModifier.html │ ├── VehicleClass.html │ ├── VehicleColor.html │ ├── VehicleDoorIndex.html │ ├── VehicleDrivingFlags.html │ ├── VehicleHash.html │ ├── VehicleLandingGearState.html │ ├── VehicleLockStatus.html │ ├── VehicleModType.html │ ├── VehicleNeonLight.html │ ├── VehiclePaintType.html │ ├── VehicleRoofState.html │ ├── VehicleSeat.html │ ├── VehicleToggleModType.html │ ├── VehicleWeaponHash.html │ ├── VehicleWheelIndex.html │ ├── VehicleWheelType.html │ ├── VehicleWindowIndex.html │ ├── VehicleWindowTint.html │ ├── WeaponComponentHash.html │ ├── WeaponGroup.html │ ├── WeaponHash.html │ ├── WeaponLivery.html │ ├── WeaponLiveryColor.html │ ├── WeaponTint.html │ ├── Weather.html │ ├── WeatherTypeHash.html │ └── ZoneID.html ├── index.html └── interfaces │ ├── DlcWeaponComponentData.html │ ├── DlcWeaponData.html │ ├── IButton.html │ ├── IDrawable.html │ ├── InvertAxis.html │ ├── WeaponComponentHudStats.html │ └── WeaponHudStats.html ├── examples ├── javascript │ ├── .gitignore │ ├── README.md │ ├── client.config.js │ ├── fxmanifest.lua │ ├── package.json │ └── src │ │ └── index.js └── typescript │ ├── .gitignore │ ├── README.md │ ├── client.config.js │ ├── fxmanifest.lua │ ├── package.json │ ├── src │ └── index.ts │ ├── tsconfig.json │ └── tslint.json ├── package.json ├── pnpm-lock.yaml ├── src ├── Audio.ts ├── Blip.ts ├── Camera.ts ├── Checkpoint.ts ├── Events.ts ├── Game.ts ├── GameplayCamera.ts ├── Model.ts ├── NetworkedScene.ts ├── ParticleEffect.ts ├── ParticleEffectAsset.ts ├── Pickup.ts ├── Raycast.ts ├── RelationshipGroup.ts ├── Rope.ts ├── TaskSequence.ts ├── Tasks.ts ├── World.ts ├── cfx │ ├── StateBagChangeHandler.ts │ └── index.ts ├── enums │ ├── Alignment.ts │ ├── AnimationFlags.ts │ ├── AudioFlag.ts │ ├── BadgeStyle.ts │ ├── Blip.ts │ ├── Bone.ts │ ├── CameraShake.ts │ ├── CameraTypes.ts │ ├── CheckboxStyle.ts │ ├── Checkpoint.ts │ ├── ClassTypes.ts │ ├── CloudHat.ts │ ├── Control.ts │ ├── CursorSprite.ts │ ├── Driving.ts │ ├── ExplosionType.ts │ ├── FiringPattern.ts │ ├── Font.ts │ ├── ForceType.ts │ ├── Gender.ts │ ├── HelmetType.ts │ ├── HudColor.ts │ ├── HudComponent.ts │ ├── InputMode.ts │ ├── IntersectOptions.ts │ ├── InvertAxis.ts │ ├── Language.ts │ ├── LeaveVehicleFlags.ts │ ├── LoadingSpinnerType.ts │ ├── MarkerType.ts │ ├── MenuAlignment.ts │ ├── NotificationType.ts │ ├── Parachute.ts │ ├── PickupType.ts │ ├── RadioStation.ts │ ├── RagdollType.ts │ ├── Relationship.ts │ ├── RopeType.ts │ ├── ScreenEffect.ts │ ├── SpeechModifier.ts │ ├── Vehicle.ts │ ├── Weather.ts │ ├── ZoneID.ts │ └── index.ts ├── hashes │ ├── MaterialHash.ts │ ├── PedHash.ts │ ├── VehicleHash.ts │ ├── WeaponHash.ts │ ├── WeatherTypeHash.ts │ └── index.ts ├── index.ts ├── interfaces │ └── Dimensions.ts ├── models │ ├── Entity.ts │ ├── EntityBone.ts │ ├── EntityBoneCollection.ts │ ├── Ped.ts │ ├── PedBone.ts │ ├── PedBoneCollection.ts │ ├── Player.ts │ ├── Prop.ts │ ├── Vehicle.ts │ ├── VehicleDoor.ts │ ├── VehicleDoorCollection.ts │ ├── VehicleMod.ts │ ├── VehicleModCollection.ts │ ├── VehicleToggleMod.ts │ ├── VehicleWheel.ts │ ├── VehicleWheelCollection.ts │ ├── VehicleWindow.ts │ ├── VehicleWindowCollection.ts │ └── index.ts ├── ui │ ├── Container.ts │ ├── Effects.ts │ ├── Fading.ts │ ├── Hud.ts │ ├── InstructionalButtons.ts │ ├── LoadingPrompt.ts │ ├── Notification.ts │ ├── Rectangle.ts │ ├── Scaleform.ts │ ├── Screen.ts │ ├── Sprite.ts │ ├── Text.ts │ ├── Timerbar.ts │ ├── index.ts │ ├── interfaces │ │ ├── IButton.ts │ │ ├── IDrawable.ts │ │ └── index.ts │ └── menu │ │ ├── Menu.ts │ │ ├── MenuControl.ts │ │ ├── MenuControls.ts │ │ ├── MenuSettings.ts │ │ ├── index.ts │ │ ├── items │ │ ├── UIMenuCheckboxItem.ts │ │ ├── UIMenuItem.ts │ │ ├── UIMenuListItem.ts │ │ ├── UIMenuSeparatorItem.ts │ │ ├── UIMenuSliderItem.ts │ │ ├── index.ts │ │ └── panels │ │ │ ├── AbstractUIMenuPanel.ts │ │ │ ├── UIMenuColorPanel.ts │ │ │ ├── UIMenuGridPanel.ts │ │ │ ├── UIMenuPercentagePanel.ts │ │ │ ├── UIMenuStatisticsPanel.ts │ │ │ ├── UIMenuStatisticsPanelItem.ts │ │ │ └── index.ts │ │ └── modules │ │ ├── ListItem.ts │ │ └── index.ts ├── utils │ ├── Animations.ts │ ├── Color.ts │ ├── Crypto.ts │ ├── LiteEvent.ts │ ├── Maths.ts │ ├── Point.ts │ ├── PointF.ts │ ├── Quaternion.ts │ ├── Size.ts │ ├── String.ts │ ├── Vector2.ts │ ├── Vector3.ts │ ├── Vector4.ts │ ├── enumValues.ts │ ├── getStringFromUInt8Array.ts │ ├── getUInt32FromUint8Array.ts │ └── index.ts ├── weapon │ ├── DlcWeaponData.ts │ ├── Mk2WeaponHash.ts │ ├── Weapon.ts │ ├── WeaponAsset.ts │ ├── WeaponCollection.ts │ ├── WeaponDisplayNameByHash.ts │ ├── WeaponGroup.ts │ ├── WeaponHudStats.ts │ ├── WeaponLivery.ts │ ├── WeaponLiveryColor.ts │ ├── WeaponTint.ts │ └── index.ts └── weaponComponent │ ├── ComponentAttachmentPoint.ts │ ├── ComponentAttachmentPointByHash.ts │ ├── ComponentDisplayNameByHash.ts │ ├── DlcWeaponComponentData.ts │ ├── InvalidWeaponComponent.ts │ ├── WeaponComponent.ts │ ├── WeaponComponentCollection.ts │ ├── WeaponComponentHash.ts │ ├── WeaponComponentHashesByWeaponHash.ts │ ├── WeaponComponentHudStats.ts │ └── index.ts ├── tsconfig.json └── typedoc.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/bump-package-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/.github/actions/bump-package-version.js -------------------------------------------------------------------------------- /.github/workflows/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/.github/workflows/config.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /lib 3 | .idea 4 | yarn.lock 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/.prettierrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | fivemjs.avarian.dev -------------------------------------------------------------------------------- /docs/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/assets/highlight.css -------------------------------------------------------------------------------- /docs/assets/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/assets/icons.css -------------------------------------------------------------------------------- /docs/assets/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/assets/icons.png -------------------------------------------------------------------------------- /docs/assets/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/assets/icons@2x.png -------------------------------------------------------------------------------- /docs/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/assets/main.js -------------------------------------------------------------------------------- /docs/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/assets/search.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/assets/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/assets/widgets.png -------------------------------------------------------------------------------- /docs/assets/widgets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/assets/widgets@2x.png -------------------------------------------------------------------------------- /docs/classes/AbstractUIMenuPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/AbstractUIMenuPanel.html -------------------------------------------------------------------------------- /docs/classes/Audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Audio.html -------------------------------------------------------------------------------- /docs/classes/Blip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Blip.html -------------------------------------------------------------------------------- /docs/classes/Camera.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Camera.html -------------------------------------------------------------------------------- /docs/classes/Checkpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Checkpoint.html -------------------------------------------------------------------------------- /docs/classes/Color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Color.html -------------------------------------------------------------------------------- /docs/classes/Container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Container.html -------------------------------------------------------------------------------- /docs/classes/Crypto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Crypto.html -------------------------------------------------------------------------------- /docs/classes/Effects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Effects.html -------------------------------------------------------------------------------- /docs/classes/Entity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Entity.html -------------------------------------------------------------------------------- /docs/classes/EntityBone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/EntityBone.html -------------------------------------------------------------------------------- /docs/classes/EntityBoneCollection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/EntityBoneCollection.html -------------------------------------------------------------------------------- /docs/classes/Fading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Fading.html -------------------------------------------------------------------------------- /docs/classes/Game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Game.html -------------------------------------------------------------------------------- /docs/classes/GameplayCamera.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/GameplayCamera.html -------------------------------------------------------------------------------- /docs/classes/Hud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Hud.html -------------------------------------------------------------------------------- /docs/classes/InstructionalButtons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/InstructionalButtons.html -------------------------------------------------------------------------------- /docs/classes/InvalidWeaponComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/InvalidWeaponComponent.html -------------------------------------------------------------------------------- /docs/classes/ListItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/ListItem.html -------------------------------------------------------------------------------- /docs/classes/LiteEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/LiteEvent.html -------------------------------------------------------------------------------- /docs/classes/LoadingPrompt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/LoadingPrompt.html -------------------------------------------------------------------------------- /docs/classes/Maths.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Maths.html -------------------------------------------------------------------------------- /docs/classes/Menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Menu.html -------------------------------------------------------------------------------- /docs/classes/MenuControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/MenuControl.html -------------------------------------------------------------------------------- /docs/classes/MenuControls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/MenuControls.html -------------------------------------------------------------------------------- /docs/classes/MenuSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/MenuSettings.html -------------------------------------------------------------------------------- /docs/classes/Model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Model.html -------------------------------------------------------------------------------- /docs/classes/NetworkedScene.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/NetworkedScene.html -------------------------------------------------------------------------------- /docs/classes/Notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Notification.html -------------------------------------------------------------------------------- /docs/classes/ParticleEffect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/ParticleEffect.html -------------------------------------------------------------------------------- /docs/classes/ParticleEffectAsset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/ParticleEffectAsset.html -------------------------------------------------------------------------------- /docs/classes/Ped.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Ped.html -------------------------------------------------------------------------------- /docs/classes/PedBone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/PedBone.html -------------------------------------------------------------------------------- /docs/classes/PedBoneCollection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/PedBoneCollection.html -------------------------------------------------------------------------------- /docs/classes/Pickup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Pickup.html -------------------------------------------------------------------------------- /docs/classes/Player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Player.html -------------------------------------------------------------------------------- /docs/classes/Point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Point.html -------------------------------------------------------------------------------- /docs/classes/PointF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/PointF.html -------------------------------------------------------------------------------- /docs/classes/Prop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Prop.html -------------------------------------------------------------------------------- /docs/classes/Quaternion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Quaternion.html -------------------------------------------------------------------------------- /docs/classes/RaycastResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/RaycastResult.html -------------------------------------------------------------------------------- /docs/classes/Rectangle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Rectangle.html -------------------------------------------------------------------------------- /docs/classes/RelationshipGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/RelationshipGroup.html -------------------------------------------------------------------------------- /docs/classes/Rope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Rope.html -------------------------------------------------------------------------------- /docs/classes/Scaleform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Scaleform.html -------------------------------------------------------------------------------- /docs/classes/Screen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Screen.html -------------------------------------------------------------------------------- /docs/classes/Size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Size.html -------------------------------------------------------------------------------- /docs/classes/Sprite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Sprite.html -------------------------------------------------------------------------------- /docs/classes/String.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/String.html -------------------------------------------------------------------------------- /docs/classes/TaskSequence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/TaskSequence.html -------------------------------------------------------------------------------- /docs/classes/Tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Tasks.html -------------------------------------------------------------------------------- /docs/classes/Text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Text.html -------------------------------------------------------------------------------- /docs/classes/Timerbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Timerbar.html -------------------------------------------------------------------------------- /docs/classes/UIMenuCheckboxItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/UIMenuCheckboxItem.html -------------------------------------------------------------------------------- /docs/classes/UIMenuColorPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/UIMenuColorPanel.html -------------------------------------------------------------------------------- /docs/classes/UIMenuGridPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/UIMenuGridPanel.html -------------------------------------------------------------------------------- /docs/classes/UIMenuItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/UIMenuItem.html -------------------------------------------------------------------------------- /docs/classes/UIMenuListItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/UIMenuListItem.html -------------------------------------------------------------------------------- /docs/classes/UIMenuPercentagePanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/UIMenuPercentagePanel.html -------------------------------------------------------------------------------- /docs/classes/UIMenuSeparatorItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/UIMenuSeparatorItem.html -------------------------------------------------------------------------------- /docs/classes/UIMenuSliderItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/UIMenuSliderItem.html -------------------------------------------------------------------------------- /docs/classes/UIMenuStatisticsPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/UIMenuStatisticsPanel.html -------------------------------------------------------------------------------- /docs/classes/UIMenuStatisticsPanelItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/UIMenuStatisticsPanelItem.html -------------------------------------------------------------------------------- /docs/classes/Vector3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Vector3.html -------------------------------------------------------------------------------- /docs/classes/Vehicle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Vehicle.html -------------------------------------------------------------------------------- /docs/classes/VehicleDoor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/VehicleDoor.html -------------------------------------------------------------------------------- /docs/classes/VehicleDoorCollection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/VehicleDoorCollection.html -------------------------------------------------------------------------------- /docs/classes/VehicleMod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/VehicleMod.html -------------------------------------------------------------------------------- /docs/classes/VehicleModCollection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/VehicleModCollection.html -------------------------------------------------------------------------------- /docs/classes/VehicleToggleMod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/VehicleToggleMod.html -------------------------------------------------------------------------------- /docs/classes/VehicleWheel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/VehicleWheel.html -------------------------------------------------------------------------------- /docs/classes/VehicleWheelCollection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/VehicleWheelCollection.html -------------------------------------------------------------------------------- /docs/classes/VehicleWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/VehicleWindow.html -------------------------------------------------------------------------------- /docs/classes/VehicleWindowCollection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/VehicleWindowCollection.html -------------------------------------------------------------------------------- /docs/classes/Weapon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/Weapon.html -------------------------------------------------------------------------------- /docs/classes/WeaponAsset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/WeaponAsset.html -------------------------------------------------------------------------------- /docs/classes/World.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/classes/World.html -------------------------------------------------------------------------------- /docs/enums/Alignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/Alignment.html -------------------------------------------------------------------------------- /docs/enums/AmmoType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/AmmoType.html -------------------------------------------------------------------------------- /docs/enums/AnimationFlags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/AnimationFlags.html -------------------------------------------------------------------------------- /docs/enums/AudioFlag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/AudioFlag.html -------------------------------------------------------------------------------- /docs/enums/BadgeStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/BadgeStyle.html -------------------------------------------------------------------------------- /docs/enums/BlipColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/BlipColor.html -------------------------------------------------------------------------------- /docs/enums/BlipSprite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/BlipSprite.html -------------------------------------------------------------------------------- /docs/enums/Bone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/Bone.html -------------------------------------------------------------------------------- /docs/enums/CameraShake.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/CameraShake.html -------------------------------------------------------------------------------- /docs/enums/CheckboxStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/CheckboxStyle.html -------------------------------------------------------------------------------- /docs/enums/CheckpointCustomIconStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/CheckpointCustomIconStyle.html -------------------------------------------------------------------------------- /docs/enums/CheckpointIcon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/CheckpointIcon.html -------------------------------------------------------------------------------- /docs/enums/CloudHat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/CloudHat.html -------------------------------------------------------------------------------- /docs/enums/ComponentAttachmentPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/ComponentAttachmentPoint.html -------------------------------------------------------------------------------- /docs/enums/Control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/Control.html -------------------------------------------------------------------------------- /docs/enums/CursorSprite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/CursorSprite.html -------------------------------------------------------------------------------- /docs/enums/DrivingStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/DrivingStyle.html -------------------------------------------------------------------------------- /docs/enums/ExplosionType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/ExplosionType.html -------------------------------------------------------------------------------- /docs/enums/FiringPattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/FiringPattern.html -------------------------------------------------------------------------------- /docs/enums/Font.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/Font.html -------------------------------------------------------------------------------- /docs/enums/ForceType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/ForceType.html -------------------------------------------------------------------------------- /docs/enums/Gender.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/Gender.html -------------------------------------------------------------------------------- /docs/enums/HelmetType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/HelmetType.html -------------------------------------------------------------------------------- /docs/enums/HudColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/HudColor.html -------------------------------------------------------------------------------- /docs/enums/HudComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/HudComponent.html -------------------------------------------------------------------------------- /docs/enums/InputMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/InputMode.html -------------------------------------------------------------------------------- /docs/enums/IntersectOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/IntersectOptions.html -------------------------------------------------------------------------------- /docs/enums/InvertAxisFlags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/InvertAxisFlags.html -------------------------------------------------------------------------------- /docs/enums/Language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/Language.html -------------------------------------------------------------------------------- /docs/enums/LeaveVehicleFlags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/LeaveVehicleFlags.html -------------------------------------------------------------------------------- /docs/enums/LoadingSpinnerType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/LoadingSpinnerType.html -------------------------------------------------------------------------------- /docs/enums/MarkerType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/MarkerType.html -------------------------------------------------------------------------------- /docs/enums/MaterialHash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/MaterialHash.html -------------------------------------------------------------------------------- /docs/enums/MenuAlignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/MenuAlignment.html -------------------------------------------------------------------------------- /docs/enums/NotificationType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/NotificationType.html -------------------------------------------------------------------------------- /docs/enums/ParachuteLandingType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/ParachuteLandingType.html -------------------------------------------------------------------------------- /docs/enums/ParachuteState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/ParachuteState.html -------------------------------------------------------------------------------- /docs/enums/PedHash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/PedHash.html -------------------------------------------------------------------------------- /docs/enums/RadioStation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/RadioStation.html -------------------------------------------------------------------------------- /docs/enums/RagdollType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/RagdollType.html -------------------------------------------------------------------------------- /docs/enums/Relationship.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/Relationship.html -------------------------------------------------------------------------------- /docs/enums/RopeType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/RopeType.html -------------------------------------------------------------------------------- /docs/enums/ScreenEffect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/ScreenEffect.html -------------------------------------------------------------------------------- /docs/enums/SpeechModifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/SpeechModifier.html -------------------------------------------------------------------------------- /docs/enums/VehicleClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/VehicleClass.html -------------------------------------------------------------------------------- /docs/enums/VehicleColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/VehicleColor.html -------------------------------------------------------------------------------- /docs/enums/VehicleDoorIndex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/VehicleDoorIndex.html -------------------------------------------------------------------------------- /docs/enums/VehicleDrivingFlags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/VehicleDrivingFlags.html -------------------------------------------------------------------------------- /docs/enums/VehicleHash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/VehicleHash.html -------------------------------------------------------------------------------- /docs/enums/VehicleLandingGearState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/VehicleLandingGearState.html -------------------------------------------------------------------------------- /docs/enums/VehicleLockStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/VehicleLockStatus.html -------------------------------------------------------------------------------- /docs/enums/VehicleModType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/VehicleModType.html -------------------------------------------------------------------------------- /docs/enums/VehicleNeonLight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/VehicleNeonLight.html -------------------------------------------------------------------------------- /docs/enums/VehiclePaintType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/VehiclePaintType.html -------------------------------------------------------------------------------- /docs/enums/VehicleRoofState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/VehicleRoofState.html -------------------------------------------------------------------------------- /docs/enums/VehicleSeat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/VehicleSeat.html -------------------------------------------------------------------------------- /docs/enums/VehicleToggleModType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/VehicleToggleModType.html -------------------------------------------------------------------------------- /docs/enums/VehicleWeaponHash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/VehicleWeaponHash.html -------------------------------------------------------------------------------- /docs/enums/VehicleWheelIndex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/VehicleWheelIndex.html -------------------------------------------------------------------------------- /docs/enums/VehicleWheelType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/VehicleWheelType.html -------------------------------------------------------------------------------- /docs/enums/VehicleWindowIndex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/VehicleWindowIndex.html -------------------------------------------------------------------------------- /docs/enums/VehicleWindowTint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/VehicleWindowTint.html -------------------------------------------------------------------------------- /docs/enums/WeaponComponentHash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/WeaponComponentHash.html -------------------------------------------------------------------------------- /docs/enums/WeaponGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/WeaponGroup.html -------------------------------------------------------------------------------- /docs/enums/WeaponHash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/WeaponHash.html -------------------------------------------------------------------------------- /docs/enums/WeaponLivery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/WeaponLivery.html -------------------------------------------------------------------------------- /docs/enums/WeaponLiveryColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/WeaponLiveryColor.html -------------------------------------------------------------------------------- /docs/enums/WeaponTint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/WeaponTint.html -------------------------------------------------------------------------------- /docs/enums/Weather.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/Weather.html -------------------------------------------------------------------------------- /docs/enums/WeatherTypeHash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/WeatherTypeHash.html -------------------------------------------------------------------------------- /docs/enums/ZoneID.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/enums/ZoneID.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/interfaces/DlcWeaponComponentData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/interfaces/DlcWeaponComponentData.html -------------------------------------------------------------------------------- /docs/interfaces/DlcWeaponData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/interfaces/DlcWeaponData.html -------------------------------------------------------------------------------- /docs/interfaces/IButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/interfaces/IButton.html -------------------------------------------------------------------------------- /docs/interfaces/IDrawable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/interfaces/IDrawable.html -------------------------------------------------------------------------------- /docs/interfaces/InvertAxis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/interfaces/InvertAxis.html -------------------------------------------------------------------------------- /docs/interfaces/WeaponComponentHudStats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/interfaces/WeaponComponentHudStats.html -------------------------------------------------------------------------------- /docs/interfaces/WeaponHudStats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/docs/interfaces/WeaponHudStats.html -------------------------------------------------------------------------------- /examples/javascript/.gitignore: -------------------------------------------------------------------------------- 1 | ./dist/ 2 | ./node-modules/ 3 | package-lock.json -------------------------------------------------------------------------------- /examples/javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/examples/javascript/README.md -------------------------------------------------------------------------------- /examples/javascript/client.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/examples/javascript/client.config.js -------------------------------------------------------------------------------- /examples/javascript/fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/examples/javascript/fxmanifest.lua -------------------------------------------------------------------------------- /examples/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/examples/javascript/package.json -------------------------------------------------------------------------------- /examples/javascript/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/examples/javascript/src/index.js -------------------------------------------------------------------------------- /examples/typescript/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | package-lock.json -------------------------------------------------------------------------------- /examples/typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/examples/typescript/README.md -------------------------------------------------------------------------------- /examples/typescript/client.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/examples/typescript/client.config.js -------------------------------------------------------------------------------- /examples/typescript/fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/examples/typescript/fxmanifest.lua -------------------------------------------------------------------------------- /examples/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/examples/typescript/package.json -------------------------------------------------------------------------------- /examples/typescript/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/examples/typescript/src/index.ts -------------------------------------------------------------------------------- /examples/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/examples/typescript/tsconfig.json -------------------------------------------------------------------------------- /examples/typescript/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/examples/typescript/tslint.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/Audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/Audio.ts -------------------------------------------------------------------------------- /src/Blip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/Blip.ts -------------------------------------------------------------------------------- /src/Camera.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/Camera.ts -------------------------------------------------------------------------------- /src/Checkpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/Checkpoint.ts -------------------------------------------------------------------------------- /src/Events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/Events.ts -------------------------------------------------------------------------------- /src/Game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/Game.ts -------------------------------------------------------------------------------- /src/GameplayCamera.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/GameplayCamera.ts -------------------------------------------------------------------------------- /src/Model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/Model.ts -------------------------------------------------------------------------------- /src/NetworkedScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/NetworkedScene.ts -------------------------------------------------------------------------------- /src/ParticleEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ParticleEffect.ts -------------------------------------------------------------------------------- /src/ParticleEffectAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ParticleEffectAsset.ts -------------------------------------------------------------------------------- /src/Pickup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/Pickup.ts -------------------------------------------------------------------------------- /src/Raycast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/Raycast.ts -------------------------------------------------------------------------------- /src/RelationshipGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/RelationshipGroup.ts -------------------------------------------------------------------------------- /src/Rope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/Rope.ts -------------------------------------------------------------------------------- /src/TaskSequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/TaskSequence.ts -------------------------------------------------------------------------------- /src/Tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/Tasks.ts -------------------------------------------------------------------------------- /src/World.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/World.ts -------------------------------------------------------------------------------- /src/cfx/StateBagChangeHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/cfx/StateBagChangeHandler.ts -------------------------------------------------------------------------------- /src/cfx/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/cfx/index.ts -------------------------------------------------------------------------------- /src/enums/Alignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/Alignment.ts -------------------------------------------------------------------------------- /src/enums/AnimationFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/AnimationFlags.ts -------------------------------------------------------------------------------- /src/enums/AudioFlag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/AudioFlag.ts -------------------------------------------------------------------------------- /src/enums/BadgeStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/BadgeStyle.ts -------------------------------------------------------------------------------- /src/enums/Blip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/Blip.ts -------------------------------------------------------------------------------- /src/enums/Bone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/Bone.ts -------------------------------------------------------------------------------- /src/enums/CameraShake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/CameraShake.ts -------------------------------------------------------------------------------- /src/enums/CameraTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/CameraTypes.ts -------------------------------------------------------------------------------- /src/enums/CheckboxStyle.ts: -------------------------------------------------------------------------------- 1 | export enum CheckboxStyle { 2 | Tick, 3 | Cross, 4 | } 5 | -------------------------------------------------------------------------------- /src/enums/Checkpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/Checkpoint.ts -------------------------------------------------------------------------------- /src/enums/ClassTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/ClassTypes.ts -------------------------------------------------------------------------------- /src/enums/CloudHat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/CloudHat.ts -------------------------------------------------------------------------------- /src/enums/Control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/Control.ts -------------------------------------------------------------------------------- /src/enums/CursorSprite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/CursorSprite.ts -------------------------------------------------------------------------------- /src/enums/Driving.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/Driving.ts -------------------------------------------------------------------------------- /src/enums/ExplosionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/ExplosionType.ts -------------------------------------------------------------------------------- /src/enums/FiringPattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/FiringPattern.ts -------------------------------------------------------------------------------- /src/enums/Font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/Font.ts -------------------------------------------------------------------------------- /src/enums/ForceType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/ForceType.ts -------------------------------------------------------------------------------- /src/enums/Gender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/Gender.ts -------------------------------------------------------------------------------- /src/enums/HelmetType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/HelmetType.ts -------------------------------------------------------------------------------- /src/enums/HudColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/HudColor.ts -------------------------------------------------------------------------------- /src/enums/HudComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/HudComponent.ts -------------------------------------------------------------------------------- /src/enums/InputMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/InputMode.ts -------------------------------------------------------------------------------- /src/enums/IntersectOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/IntersectOptions.ts -------------------------------------------------------------------------------- /src/enums/InvertAxis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/InvertAxis.ts -------------------------------------------------------------------------------- /src/enums/Language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/Language.ts -------------------------------------------------------------------------------- /src/enums/LeaveVehicleFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/LeaveVehicleFlags.ts -------------------------------------------------------------------------------- /src/enums/LoadingSpinnerType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/LoadingSpinnerType.ts -------------------------------------------------------------------------------- /src/enums/MarkerType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/MarkerType.ts -------------------------------------------------------------------------------- /src/enums/MenuAlignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/MenuAlignment.ts -------------------------------------------------------------------------------- /src/enums/NotificationType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/NotificationType.ts -------------------------------------------------------------------------------- /src/enums/Parachute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/Parachute.ts -------------------------------------------------------------------------------- /src/enums/PickupType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/PickupType.ts -------------------------------------------------------------------------------- /src/enums/RadioStation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/RadioStation.ts -------------------------------------------------------------------------------- /src/enums/RagdollType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/RagdollType.ts -------------------------------------------------------------------------------- /src/enums/Relationship.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/Relationship.ts -------------------------------------------------------------------------------- /src/enums/RopeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/RopeType.ts -------------------------------------------------------------------------------- /src/enums/ScreenEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/ScreenEffect.ts -------------------------------------------------------------------------------- /src/enums/SpeechModifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/SpeechModifier.ts -------------------------------------------------------------------------------- /src/enums/Vehicle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/Vehicle.ts -------------------------------------------------------------------------------- /src/enums/Weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/Weather.ts -------------------------------------------------------------------------------- /src/enums/ZoneID.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/ZoneID.ts -------------------------------------------------------------------------------- /src/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/enums/index.ts -------------------------------------------------------------------------------- /src/hashes/MaterialHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/hashes/MaterialHash.ts -------------------------------------------------------------------------------- /src/hashes/PedHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/hashes/PedHash.ts -------------------------------------------------------------------------------- /src/hashes/VehicleHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/hashes/VehicleHash.ts -------------------------------------------------------------------------------- /src/hashes/WeaponHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/hashes/WeaponHash.ts -------------------------------------------------------------------------------- /src/hashes/WeatherTypeHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/hashes/WeatherTypeHash.ts -------------------------------------------------------------------------------- /src/hashes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/hashes/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces/Dimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/interfaces/Dimensions.ts -------------------------------------------------------------------------------- /src/models/Entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/Entity.ts -------------------------------------------------------------------------------- /src/models/EntityBone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/EntityBone.ts -------------------------------------------------------------------------------- /src/models/EntityBoneCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/EntityBoneCollection.ts -------------------------------------------------------------------------------- /src/models/Ped.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/Ped.ts -------------------------------------------------------------------------------- /src/models/PedBone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/PedBone.ts -------------------------------------------------------------------------------- /src/models/PedBoneCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/PedBoneCollection.ts -------------------------------------------------------------------------------- /src/models/Player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/Player.ts -------------------------------------------------------------------------------- /src/models/Prop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/Prop.ts -------------------------------------------------------------------------------- /src/models/Vehicle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/Vehicle.ts -------------------------------------------------------------------------------- /src/models/VehicleDoor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/VehicleDoor.ts -------------------------------------------------------------------------------- /src/models/VehicleDoorCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/VehicleDoorCollection.ts -------------------------------------------------------------------------------- /src/models/VehicleMod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/VehicleMod.ts -------------------------------------------------------------------------------- /src/models/VehicleModCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/VehicleModCollection.ts -------------------------------------------------------------------------------- /src/models/VehicleToggleMod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/VehicleToggleMod.ts -------------------------------------------------------------------------------- /src/models/VehicleWheel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/VehicleWheel.ts -------------------------------------------------------------------------------- /src/models/VehicleWheelCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/VehicleWheelCollection.ts -------------------------------------------------------------------------------- /src/models/VehicleWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/VehicleWindow.ts -------------------------------------------------------------------------------- /src/models/VehicleWindowCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/VehicleWindowCollection.ts -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/ui/Container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/Container.ts -------------------------------------------------------------------------------- /src/ui/Effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/Effects.ts -------------------------------------------------------------------------------- /src/ui/Fading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/Fading.ts -------------------------------------------------------------------------------- /src/ui/Hud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/Hud.ts -------------------------------------------------------------------------------- /src/ui/InstructionalButtons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/InstructionalButtons.ts -------------------------------------------------------------------------------- /src/ui/LoadingPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/LoadingPrompt.ts -------------------------------------------------------------------------------- /src/ui/Notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/Notification.ts -------------------------------------------------------------------------------- /src/ui/Rectangle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/Rectangle.ts -------------------------------------------------------------------------------- /src/ui/Scaleform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/Scaleform.ts -------------------------------------------------------------------------------- /src/ui/Screen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/Screen.ts -------------------------------------------------------------------------------- /src/ui/Sprite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/Sprite.ts -------------------------------------------------------------------------------- /src/ui/Text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/Text.ts -------------------------------------------------------------------------------- /src/ui/Timerbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/Timerbar.ts -------------------------------------------------------------------------------- /src/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/index.ts -------------------------------------------------------------------------------- /src/ui/interfaces/IButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/interfaces/IButton.ts -------------------------------------------------------------------------------- /src/ui/interfaces/IDrawable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/interfaces/IDrawable.ts -------------------------------------------------------------------------------- /src/ui/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/interfaces/index.ts -------------------------------------------------------------------------------- /src/ui/menu/Menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/Menu.ts -------------------------------------------------------------------------------- /src/ui/menu/MenuControl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/MenuControl.ts -------------------------------------------------------------------------------- /src/ui/menu/MenuControls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/MenuControls.ts -------------------------------------------------------------------------------- /src/ui/menu/MenuSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/MenuSettings.ts -------------------------------------------------------------------------------- /src/ui/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/index.ts -------------------------------------------------------------------------------- /src/ui/menu/items/UIMenuCheckboxItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/items/UIMenuCheckboxItem.ts -------------------------------------------------------------------------------- /src/ui/menu/items/UIMenuItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/items/UIMenuItem.ts -------------------------------------------------------------------------------- /src/ui/menu/items/UIMenuListItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/items/UIMenuListItem.ts -------------------------------------------------------------------------------- /src/ui/menu/items/UIMenuSeparatorItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/items/UIMenuSeparatorItem.ts -------------------------------------------------------------------------------- /src/ui/menu/items/UIMenuSliderItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/items/UIMenuSliderItem.ts -------------------------------------------------------------------------------- /src/ui/menu/items/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/items/index.ts -------------------------------------------------------------------------------- /src/ui/menu/items/panels/AbstractUIMenuPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/items/panels/AbstractUIMenuPanel.ts -------------------------------------------------------------------------------- /src/ui/menu/items/panels/UIMenuColorPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/items/panels/UIMenuColorPanel.ts -------------------------------------------------------------------------------- /src/ui/menu/items/panels/UIMenuGridPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/items/panels/UIMenuGridPanel.ts -------------------------------------------------------------------------------- /src/ui/menu/items/panels/UIMenuPercentagePanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/items/panels/UIMenuPercentagePanel.ts -------------------------------------------------------------------------------- /src/ui/menu/items/panels/UIMenuStatisticsPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/items/panels/UIMenuStatisticsPanel.ts -------------------------------------------------------------------------------- /src/ui/menu/items/panels/UIMenuStatisticsPanelItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/items/panels/UIMenuStatisticsPanelItem.ts -------------------------------------------------------------------------------- /src/ui/menu/items/panels/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/items/panels/index.ts -------------------------------------------------------------------------------- /src/ui/menu/modules/ListItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/modules/ListItem.ts -------------------------------------------------------------------------------- /src/ui/menu/modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/ui/menu/modules/index.ts -------------------------------------------------------------------------------- /src/utils/Animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/utils/Animations.ts -------------------------------------------------------------------------------- /src/utils/Color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/utils/Color.ts -------------------------------------------------------------------------------- /src/utils/Crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/utils/Crypto.ts -------------------------------------------------------------------------------- /src/utils/LiteEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/utils/LiteEvent.ts -------------------------------------------------------------------------------- /src/utils/Maths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/utils/Maths.ts -------------------------------------------------------------------------------- /src/utils/Point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/utils/Point.ts -------------------------------------------------------------------------------- /src/utils/PointF.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/utils/PointF.ts -------------------------------------------------------------------------------- /src/utils/Quaternion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/utils/Quaternion.ts -------------------------------------------------------------------------------- /src/utils/Size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/utils/Size.ts -------------------------------------------------------------------------------- /src/utils/String.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/utils/String.ts -------------------------------------------------------------------------------- /src/utils/Vector2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/utils/Vector2.ts -------------------------------------------------------------------------------- /src/utils/Vector3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/utils/Vector3.ts -------------------------------------------------------------------------------- /src/utils/Vector4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/utils/Vector4.ts -------------------------------------------------------------------------------- /src/utils/enumValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/utils/enumValues.ts -------------------------------------------------------------------------------- /src/utils/getStringFromUInt8Array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/utils/getStringFromUInt8Array.ts -------------------------------------------------------------------------------- /src/utils/getUInt32FromUint8Array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/utils/getUInt32FromUint8Array.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/weapon/DlcWeaponData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weapon/DlcWeaponData.ts -------------------------------------------------------------------------------- /src/weapon/Mk2WeaponHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weapon/Mk2WeaponHash.ts -------------------------------------------------------------------------------- /src/weapon/Weapon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weapon/Weapon.ts -------------------------------------------------------------------------------- /src/weapon/WeaponAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weapon/WeaponAsset.ts -------------------------------------------------------------------------------- /src/weapon/WeaponCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weapon/WeaponCollection.ts -------------------------------------------------------------------------------- /src/weapon/WeaponDisplayNameByHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weapon/WeaponDisplayNameByHash.ts -------------------------------------------------------------------------------- /src/weapon/WeaponGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weapon/WeaponGroup.ts -------------------------------------------------------------------------------- /src/weapon/WeaponHudStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weapon/WeaponHudStats.ts -------------------------------------------------------------------------------- /src/weapon/WeaponLivery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weapon/WeaponLivery.ts -------------------------------------------------------------------------------- /src/weapon/WeaponLiveryColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weapon/WeaponLiveryColor.ts -------------------------------------------------------------------------------- /src/weapon/WeaponTint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weapon/WeaponTint.ts -------------------------------------------------------------------------------- /src/weapon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weapon/index.ts -------------------------------------------------------------------------------- /src/weaponComponent/ComponentAttachmentPoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weaponComponent/ComponentAttachmentPoint.ts -------------------------------------------------------------------------------- /src/weaponComponent/ComponentAttachmentPointByHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weaponComponent/ComponentAttachmentPointByHash.ts -------------------------------------------------------------------------------- /src/weaponComponent/ComponentDisplayNameByHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weaponComponent/ComponentDisplayNameByHash.ts -------------------------------------------------------------------------------- /src/weaponComponent/DlcWeaponComponentData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weaponComponent/DlcWeaponComponentData.ts -------------------------------------------------------------------------------- /src/weaponComponent/InvalidWeaponComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weaponComponent/InvalidWeaponComponent.ts -------------------------------------------------------------------------------- /src/weaponComponent/WeaponComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weaponComponent/WeaponComponent.ts -------------------------------------------------------------------------------- /src/weaponComponent/WeaponComponentCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weaponComponent/WeaponComponentCollection.ts -------------------------------------------------------------------------------- /src/weaponComponent/WeaponComponentHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weaponComponent/WeaponComponentHash.ts -------------------------------------------------------------------------------- /src/weaponComponent/WeaponComponentHashesByWeaponHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weaponComponent/WeaponComponentHashesByWeaponHash.ts -------------------------------------------------------------------------------- /src/weaponComponent/WeaponComponentHudStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weaponComponent/WeaponComponentHudStats.ts -------------------------------------------------------------------------------- /src/weaponComponent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/src/weaponComponent/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativewrappers/fivem-client/HEAD/typedoc.json --------------------------------------------------------------------------------