Add sdk/js/player/skinPart

Braydon 2024-04-15 08:12:29 -07:00
parent 68b0bf3e60
commit fc9ceef851

@ -0,0 +1,10 @@
# Skin Part Texture
## Example
```ts
import { getSkinPart } from "restfulmc-lib";
import { SkinPart } from "restfulmc-lib/dist/index";
const partTexture: ArrayBuffer = await getSkinPart(SkinPart.HEAD, "Rainnny"); // Fetch the skin part
/// Do something with the texture
```