rock-mod
Version:
Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.
17 lines (16 loc) • 520 B
TypeScript
import { type IWorldObjectCreateOptions, type IWorldObjectsManager } from "../worldObject";
import { type IBlip } from "./IBlip";
export interface IBlipCreateOptions extends IWorldObjectCreateOptions {
alpha?: number;
color?: number;
drawDistance?: number;
global?: boolean;
name?: string;
rotation?: number;
scale?: number;
shortRange?: boolean;
sprite: number;
}
export interface IBlipsManager extends IWorldObjectsManager<IBlip> {
create(options: IBlipCreateOptions): IBlip;
}