rock-mod
Version:
Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.
11 lines (10 loc) • 420 B
TypeScript
import { type ICuboidColshape } from "../../common";
import { type IMockColshapeOptions, MockColshape } from "./MockColshape";
export interface IMockCuboidColshapeCreateOptions extends IMockColshapeOptions {
width: number;
depth: number;
height: number;
}
export declare class MockCuboidColshape extends MockColshape implements ICuboidColshape {
constructor(options: IMockCuboidColshapeCreateOptions);
}