UNPKG

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) 369 B
import { type IEntitiesManager, type IEntityCreateOptions } from "../entity"; import { type IPed } from "./IPed"; export interface IPedCreateOptions extends IEntityCreateOptions { frozen: boolean; invincible?: boolean; placeOnGround?: boolean; } export interface IPedsManager extends IEntitiesManager<IPed> { create(options: IPedCreateOptions): IPed; }