UNPKG

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) 332 B
import { AltVEntity, type IAltVEntityOptions } from "../entity/AltVEntity"; import Ped = AltVServer.Ped; import { type IPed } from "../../common"; export interface IAltVPedOptions extends IAltVEntityOptions<Ped> { } export declare class AltVPed extends AltVEntity<Ped> implements IPed { constructor(options: IAltVPedOptions); }