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) • 421 B
TypeScript
import { AltVEntity, type IAltVEntityOptions } from "../entity/AltVEntity";
import { type IObject } from "../../common/object/IObject";
export interface IAltVObjectOptions extends IAltVEntityOptions<AltVServer.Object> {
}
export declare class AltVObject extends AltVEntity<AltVServer.Object> implements IObject {
get alpha(): number;
constructor(options: IAltVObjectOptions);
setAlpha(value: number): void;
}