UNPKG

rock-mod

Version:

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

13 lines (12 loc) 280 B
import { RageEntity } from "../entity/RageEntity"; export class RageObject extends RageEntity { get alpha() { return this.mpEntity.alpha; } constructor(options) { super(options); } setAlpha(value) { this.mpEntity.alpha = value; } }