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) • 416 B
TypeScript
import { type IRectangleColshape } from "../../common";
import { type IMockColshapeOptions, MockColshape } from "./MockColshape";
export interface IMockRectangleColshapeCreateOptions extends IMockColshapeOptions {
width: number;
height: number;
}
export declare class MockRectangleColshape extends MockColshape implements IRectangleColshape {
constructor(options: IMockRectangleColshapeCreateOptions);
}