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) 305 B
import { type IEntity, type IEntityOptions } from "../entity/IEntity"; export interface IPlayerOptions extends IEntityOptions { } export interface IPlayer extends IEntity { get name(): string; get heading(): number; get health(): number; get armour(): number; get isDead(): boolean; }