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) • 611 B
TypeScript
import { type IEntity } from "../../common/entity/IEntity";
import { type IRageWorldObjectOptions, RageWorldObject } from "../worldObject/RageWorldObject";
import { Vector3D } from "../../../../shared/common/utils";
export interface IRageEntityOptions<T extends EntityMp> extends IRageWorldObjectOptions<T> {
}
export declare abstract class RageEntity<T extends EntityMp> extends RageWorldObject<T> implements IEntity {
get model(): number;
get rotation(): Vector3D;
protected constructor(options: IRageEntityOptions<T>);
setModel(value: string): void;
setRotation(value: Vector3D): void;
}