UNPKG

rock-mod

Version:

Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.

22 lines (21 loc) 574 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CCMPBaseObject = void 0; const notImplemented = (name) => { throw new Error(`Not implemented yet: ${name}`); }; class CCMPBaseObject { get id() { return notImplemented("CCMPBaseObject.id"); } get type() { return notImplemented("CCMPBaseObject.type"); } get isExists() { return notImplemented("CCMPBaseObject.isExists"); } destroy() { notImplemented("CCMPBaseObject.destroy"); } } exports.CCMPBaseObject = CCMPBaseObject;