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) 381 B
import { type ISphereColshape } from "../../common"; import { type IMockColshapeOptions, MockColshape } from "./MockColshape"; export interface IMockSphereColshapeCreateOptions extends IMockColshapeOptions { range: number; } export declare class MockSphereColshape extends MockColshape implements ISphereColshape { constructor(options: IMockSphereColshapeCreateOptions); }