UNPKG

rock-mod

Version:

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

18 lines (17 loc) 349 B
export class RageBaseObject { get id() { return this._mpEntity.id; } get type() { return this._mpEntity.type; } get isExists() { return this._mpEntity.isExists(); } get mpEntity() { return this._mpEntity; } constructor(options) { this._mpEntity = options.mpEntity; } }