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) • 393 B
TypeScript
import { type ICCMPColshapeOptions, CCMPColshape } from "./CCMPColshape";
import { type IRectangleColshape } from "../../common/colshape/IRectangleColshape";
export interface ICCMPRectangleColshapeOptions extends ICCMPColshapeOptions {
}
export declare class CCMPRectangleColshape extends CCMPColshape implements IRectangleColshape {
constructor(options: ICCMPRectangleColshapeOptions);
}