UNPKG

rock-mod

Version:

Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.

16 lines (15 loc) 616 B
import { type IRageEntityOptions, RageEntity } from "../entity/RageEntity"; import { type IVehicle } from "../../common/vehicle/IVehicle"; export interface IRageVehicleOptions extends IRageEntityOptions<VehicleMp> { } export declare class RageVehicle extends RageEntity<VehicleMp> implements IVehicle { get bodyHealth(): number; get engineHealth(): number; get numberPlate(): string; get isDead(): boolean; constructor(options: IRageVehicleOptions); setBodyHealth(value: number): void; setEngineHealth(value: number): void; setNumberPlate(value: string): void; explode(): void; }