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) 498 B
import { type IWorldObjectCreateOptions, type IWorldObjectsManager } from "../worldObject"; import { type IBlip } from "./IBlip"; export interface IBlipCreateOptions extends IWorldObjectCreateOptions { alpha?: number; color?: number; drawDistance?: number; name?: string; rotation?: number; scale?: number; shortRange?: boolean; sprite: number; } export interface IBlipsManager extends IWorldObjectsManager<IBlip> { create(options: IBlipCreateOptions): IBlip; }