@jsprismarine/prismarine
Version:
Dedicated Minecraft Bedrock Edition server written in TypeScript
18 lines • 518 B
TypeScript
import { default as SkinImage } from './SkinImage';
export default class SkinAnimation {
private readonly image;
private readonly frames;
private readonly type;
private readonly expression;
constructor({ image, frames, type, expression }: {
image: SkinImage;
frames: number;
type: number;
expression: number;
});
getImage(): SkinImage;
getFrames(): number;
getType(): number;
getExpression(): number;
}
//# sourceMappingURL=SkinAnimation.d.ts.map