UNPKG

rock-mod

Version:

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

9 lines (8 loc) 401 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); }