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) • 358 B
TypeScript
import { type IRageWorldObjectOptions, RageWorldObject } from "../worldObject/RageWorldObject";
export interface IRageColshapeOptions extends IRageWorldObjectOptions<ColshapeMp> {
}
export declare abstract class RageColshape extends RageWorldObject<ColshapeMp> {
protected constructor(options: IRageColshapeOptions);
get key(): string | undefined;
}