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) 292 B
import BaseObject = AltVClient.BaseObject; import { type BaseObjectType } from "@shared/entities"; export interface IBaseObjectOptions { mpEntity: EntityMp | BaseObject; } export interface IBaseObject { get id(): number; get type(): BaseObjectType; get isExists(): boolean; }