rock-mod
Version:
Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.
10 lines (9 loc) • 403 B
TypeScript
import { type IRageEntityOptions, RageEntity } from "../entity/RageEntity";
import { type IObject } from "../../common/object/IObject";
export interface IRageObjectOptions extends IRageEntityOptions<ObjectMp> {
}
export declare class RageObject extends RageEntity<ObjectMp> implements IObject {
get alpha(): number;
constructor(options: IRageObjectOptions);
setAlpha(value: number): void;
}