rock-mod
Version:
Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.
19 lines (18 loc) • 426 B
TypeScript
import { type Vector3D } from "../../../../shared/common/utils/math/Vectors";
export interface IMockEntity {
id: number;
model: number;
position: Vector3D;
rotation: Vector3D;
dimension: number;
exists: boolean;
type: string;
name?: string;
socialClub?: string;
health?: number;
armour?: number;
weapon?: number;
weaponAmmo?: number;
ip?: string;
serial?: string;
}