UNPKG

@nativewrappers/client

Version:

Javascript/Typescript wrapper for the FiveM natives

13 lines (12 loc) 384 B
import { Vector3 } from '../utils'; import { Entity } from './'; export declare class EntityBone { get Index(): number; get Owner(): Entity; get Position(): Vector3; get Rotation(): Vector3; get IsValid(): boolean; protected readonly owner: Entity; protected readonly index: number; constructor(owner: Entity, boneIndex?: number, boneName?: string); }