rock-mod
Version:
Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.
14 lines (13 loc) • 477 B
TypeScript
import { type IRageEntityOptions, RageEntity } from "../entity/RageEntity";
import { type IPlayer } from "../../common/player/IPlayer";
interface IRagePlayerOptions extends IRageEntityOptions<PlayerMp> {
}
export declare class RagePlayer extends RageEntity<PlayerMp> implements IPlayer {
get name(): string;
get heading(): number;
get health(): number;
get armour(): number;
get isDead(): boolean;
constructor(options: IRagePlayerOptions);
}
export {};