UNPKG

rock-mod

Version:

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

12 lines (11 loc) 527 B
import { type IRageWorldObjectOptions, RageWorldObject } from "../worldObject/RageWorldObject"; import { type IVector3D } from "../../../../shared"; export interface IRageColshapeOptions extends IRageWorldObjectOptions<ColshapeMp> { position: IVector3D; } export declare abstract class RageColshape extends RageWorldObject<ColshapeMp> { protected constructor(options: IRageColshapeOptions); get key(): string | undefined; getNetData(name: string): unknown; setNetData(name: string, value: unknown): void; }