UNPKG

rock-mod

Version:

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

12 lines (11 loc) 436 B
import { type IEntitiesManager, type IEntityCreateOptions } from "../entity/IEntitiesManager"; import { type IVehicle } from "./IVehicle"; export interface IVehicleCreateOptions extends IEntityCreateOptions { engine: boolean; locked: boolean; numberPlate?: string; numberPlateType?: number; } export interface IVehiclesManager extends IEntitiesManager<IVehicle> { create(options: IVehicleCreateOptions): IVehicle; }