UNPKG

rock-mod

Version:

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

8 lines (7 loc) 227 B
import { type IEntity, type IEntityOptions } from "../entity"; export interface IObjectOptions extends IEntityOptions { } export interface IObject extends IEntity { get alpha(): number; setAlpha(value: number): void; }