Описание
# what should my library mod be?
### THIS IS A FABRIC MOD, PLEASE DON'T ASK ABOUT PORTING TO (NEO)FORGE!
This is just another library mod, nothing special.
You can download this Minecraft library mod at [Curseforge](https://curseforge.com/minecraft/mc-mods/wsmlmb), [GitHub](https://github.com/AnAwesomGuy/wsmlmb), or here on [Modrinth](https://modrinth.com/mod/wsmlmb).
This library depends on [Fabric API](https://modrinth.com/mod/fabric-api), but you should already have that installed.
## 🔽 If you want to use this library in your mod, see below! 🔽
### IF YOU ARE NOT A MOD DEV USING THIS LIBRARY, THIS ***DOES NOT*** AFFECT YOU! YOU CAN IGNORE THIS!
This mod is a library mod with 4 main features:
- the ability to create functional custom chests with custom textures.
- the ability to create functional custom shears by adding your item into the `#c:shears` tag.
- the ability to create functional custom crafting tables.
- many useful utilities for support over multiple versions.
To use this mod as a library, you can use [Modrinth's maven](https://docs.modrinth.com/maven):
```groovy
repositories {
maven { url "https://api.modrinth.com/maven" }
}
dependencies {
modImplementation "maven.modrinth:wsmlmb:${wsmlmb_version}"
}
```
Many of the classes and methods in this mod are already documented in the test mod and JavaDocs.
For more info, refer to the [GitHub page](https://github.com/AnAwesomGuy/wsmlmb).