rock-mod
Version:
Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.
20 lines (19 loc) • 494 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MockObject = void 0;
const MockEntity_1 = require("../entity/MockEntity");
class MockObject extends MockEntity_1.MockEntity {
_alpha;
get alpha() {
return this._alpha;
}
constructor(options) {
super(options);
const { alpha = 255 } = options;
this._alpha = alpha;
}
setAlpha(alpha) {
this._alpha = alpha;
}
}
exports.MockObject = MockObject;