UNPKG

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