UNPKG

rock-mod

Version:

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

17 lines (16 loc) 742 B
import { type IVector3D } from "../../../../shared/common/utils"; export interface IStreamingManager { requestAnimationDictionary(dictionary: string): void; hasAnimationDictionaryLoaded(dictionary: string): boolean; removeAnimationDictionary(dictionary: string): void; requestNamedPtfxAsset(assetName: string): void; hasNamedPtfxAssetLoaded(assetName: string): boolean; isModelInCdimage(model: string): boolean; requestModel(modelHash: number): void; hasModelLoaded(modelHash: number): boolean; requestIpl(iplName: string): void; removeIpl(iplName: string): void; setFocusArea(position: IVector3D, offset: IVector3D): void; clearFocus(): void; setFocusEntity(entityHandle: number): void; }