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) 473 B
import { type IMarkerCreateOptions, type IMarkersManager } from "../../common"; import { RageWorldObjectsManager } from "../worldObject/RageWorldObjectsManager"; import { RageMarker } from "./RageMarker"; export interface IRageMarkerCreateOptions extends IMarkerCreateOptions { } export declare class RageMarkersManager extends RageWorldObjectsManager<RageMarker> implements IMarkersManager { constructor(); create(options: IRageMarkerCreateOptions): RageMarker; }