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) 333 B
import { type IEntitiesManager, type IEntityCreateOptions } from "../entity"; import { type IObject } from "./IObject"; export interface IObjectCreateOptions extends IEntityCreateOptions { alpha: number; } export interface IObjectsManager extends IEntitiesManager<IObject> { create(options: IObjectCreateOptions): IObject; }