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) 306 B
import { type IBaseObject } from "../../common/baseObject/IBaseObject"; import { type BaseObjectType } from "../../../../shared"; export declare abstract class CCMPBaseObject implements IBaseObject { get id(): number; get type(): BaseObjectType; get isExists(): boolean; destroy(): void; }