UNPKG

rock-mod

Version:

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

10 lines (9 loc) 411 B
import { type ICylinderColshape } from "../../common"; import { type IMockColshapeOptions, MockColshape } from "./MockColshape"; export interface IMockCylinderColshapeCreateOptions extends IMockColshapeOptions { height: number; range: number; } export declare class MockCylinderColshape extends MockColshape implements ICylinderColshape { constructor(options: IMockCylinderColshapeCreateOptions); }