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) • 492 B
TypeScript
import { type IVehicleCreateOptions, type IVehiclesManager } from "../../common/vehicle/IVehiclesManager";
import { CCMPEntitiesManager } from "../entity/CCMPEntitiesManager";
import { CCMPVehicle } from "./CCMPVehicle";
export interface ICCMPVehicleCreateOptions extends IVehicleCreateOptions {
}
export declare class CCMPVehiclesManager extends CCMPEntitiesManager<CCMPVehicle> implements IVehiclesManager {
constructor();
create(options: ICCMPVehicleCreateOptions): CCMPVehicle;
}