rock-mod
Version:
Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.
15 lines (14 loc) • 650 B
TypeScript
import { type IMarker } from "../../common";
import { type IRageWorldObjectOptions, RageWorldObject } from "../worldObject/RageWorldObject";
import { type IVector3D } from "../../../../shared/common/utils";
import { type IMarkerType } from "@shared/entities";
export interface IRageMarkerOptions extends IRageWorldObjectOptions<MarkerMp> {
}
export declare class RageMarker extends RageWorldObject<MarkerMp> implements IMarker {
get markerType(): IMarkerType;
get visible(): boolean;
get rotation(): IVector3D;
constructor(options: IRageMarkerOptions);
setVisible(value: boolean): void;
setRotation(value: IVector3D): void;
}