@nativewrappers/redm
Version:
Native wrappers and utilities for use with RedM.
13 lines (12 loc) • 629 B
TypeScript
import type { CommonBaseEntityBone } from "./CommonBaseEntityBone";
import { CommonBaseEntityBoneCollection } from "./CommonBaseEntityBoneCollection";
import { CommonEntityBone } from "./CommonEntityBone";
import type { IHandle } from "./IHandle";
export declare class CommonEntityBoneCollection extends CommonBaseEntityBoneCollection {
constructor(owner: IHandle);
getBoneFromName(boneName: string): CommonBaseEntityBone;
getBoneFromIndex(boneIndex: number): CommonBaseEntityBone;
getBone(boneIndex: number): CommonEntityBone;
getBone(boneName: string): CommonEntityBone;
get Core(): CommonEntityBone;
}