UNPKG

rock-mod

Version:

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

11 lines (10 loc) 317 B
import { RageWorldObject } from "../worldObject/RageWorldObject"; export class RageColshape extends RageWorldObject { constructor(options) { super(options); } get key() { const value = this.mpEntity.getVariable("key"); return typeof value === "string" ? value : undefined; } }