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) 392 B
import { type IBaseObject, type IBaseObjectOptions } from "../baseObject"; import { type IVector3D } from "@shared/common/utils"; export interface IWorldObjectOptions extends IBaseObjectOptions { } export interface IWorldObject extends IBaseObject { get position(): IVector3D; get dimension(): number; setPosition(value: IVector3D): void; setDimension(value: number): void; }