UNPKG

rock-mod

Version:

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

10 lines (9 loc) 380 B
import { type IEntitiesManager, type IEntityCreateOptions } from "../entity/IEntitiesManager"; import { type IVehicle } from "./IVehicle"; export interface IVehicleCreateOptions extends IEntityCreateOptions { engine: boolean; locked: boolean; } export interface IVehiclesManager extends IEntitiesManager<IVehicle> { create(options: IVehicleCreateOptions): IVehicle; }