rock-mod
Version:
Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.
9 lines (8 loc) • 322 B
TypeScript
import { type IWorldObject, type IWorldObjectOptions } from "../worldObject";
export interface IColshapeOptions extends IWorldObjectOptions {
}
export interface IColshape extends IWorldObject {
get key(): string | undefined;
getNetData(name: string): unknown;
setNetData(name: string, value: unknown): void;
}