rock-mod
Version:
Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.
8 lines (7 loc) • 375 B
TypeScript
import { type ICCMPColshapeOptions, CCMPColshape } from "./CCMPColshape";
import { type ISphereColshape } from "../../common/colshape/ISphereColshape";
export interface ICCMPSphereColshapeOptions extends ICCMPColshapeOptions {
}
export declare class CCMPSphereColshape extends CCMPColshape implements ISphereColshape {
constructor(options: ICCMPSphereColshapeOptions);
}