UNPKG

rock-mod

Version:

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

13 lines (12 loc) 494 B
import { type IWorldObject, type IWorldObjectOptions } from "../worldObject/IWorldObject"; import { type IVector3D } from "../../../../shared/common/utils"; export interface IEntityOptions extends IWorldObjectOptions { } export interface IEntity extends IWorldObject { get model(): number; get rotation(): IVector3D; setModel(value: string): void; setRotation(value: IVector3D): void; getNetData(name: string): unknown; setNetData(name: string, value: unknown): void; }