rock-mod
Version:
Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.
12 lines (11 loc) • 315 B
TypeScript
import BaseObject = AltVServer.BaseObject;
import { type BaseObjectType } from "../../../../shared";
export interface IBaseObjectOptions {
mpEntity: EntityMp | BaseObject;
}
export interface IBaseObject {
get id(): number;
get type(): BaseObjectType;
get isExists(): boolean;
destroy(): void;
}