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 ICircleColshape } from "../../common/colshape/ICircleColshape";
export interface ICCMPCircleColshapeOptions extends ICCMPColshapeOptions {
}
export declare class CCMPCircleColshape extends CCMPColshape implements ICircleColshape {
constructor(options: ICCMPCircleColshapeOptions);
}