UNPKG

rock-mod

Version:

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

17 lines (16 loc) 428 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AltVObject = void 0; const AltVEntity_1 = require("../entity/AltVEntity"); class AltVObject extends AltVEntity_1.AltVEntity { get alpha() { return this.mpEntity.alpha; } constructor(options) { super(options); } setAlpha(value) { this.mpEntity.alpha = value; } } exports.AltVObject = AltVObject;