UNPKG

@nativewrappers/server

Version:

Native wrappers and utilities for use with FXServer.

12 lines (11 loc) 542 B
import { ClassTypes } from "../../common/utils/ClassTypes"; import { CommonBaseEntity } from "./CommonBaseEntity"; import { CommonEntityBoneCollection } from "./CommonEntityBoneCollection"; export declare class CommonVehicle extends CommonBaseEntity { static fromHandle(handle: number): CommonVehicle | null; static fromNetworkId(networkId: number): CommonVehicle | null; protected type: ClassTypes; protected bones?: CommonEntityBoneCollection; constructor(handle: number); get Bones(): CommonEntityBoneCollection; }