UNPKG

rock-mod

Version:

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

21 lines (20 loc) 794 B
import { type IRageWorldObjectOptions, RageWorldObject } from "../worldObject/RageWorldObject"; import { type IBlip } from "../../common"; import { type IBlipColor, type IBlipSprite } from "../../../../shared"; export interface IRageBlipOptions extends IRageWorldObjectOptions<EntityMp> { } export declare class RageBlip extends RageWorldObject<EntityMp> implements IBlip { get name(): string; get sprite(): IBlipSprite; get color(): IBlipColor; get alpha(): number; get scale(): number; get drawDistance(): number; get shortRange(): boolean; get rotation(): number; constructor(options: IRageBlipOptions); setName(value: string): void; setSprite(value: IBlipSprite): void; setColor(value: IBlipColor): void; setAlpha(value: number): void; }