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) • 307 B
TypeScript
import { type IRageEntityOptions, RageEntity } from "../entity/RageEntity";
import { type IPed } from "../../common";
export interface IRagePedOptions extends IRageEntityOptions<PedMp> {
}
export declare class RagePed extends RageEntity<PedMp> implements IPed {
constructor(options: IRagePedOptions);
}