Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.47 KB

README.md

File metadata and controls

37 lines (29 loc) · 1.47 KB

Shulker Box Tooltip Maven Repository

This mod allows you to see a preview window of a shulker box contents when hovering above it in an inventory by pressing shift.

This mod requires Fabric (https://minecraft.curseforge.com/projects/fabric).

Developers:

Maven:

repositories {
    maven {url "https://maven.misterpemodder.com/libs-release/"}
}

dependencies {
    modCompile "com.misterpemodder.shulkerboxtooltip:shulkerboxtooltip:<VERSION>"
}

API:

To use the API, implement the ShulkerBoxTooltipApi interface on a class and add that as an entry point of type "shulkerboxtooltip" in your fabric.mod.json as such:

"entrypoints": {
    "shulkerboxtooltip": [
      "com.example.mymod.MyShulkerBoxApiImpl"
    ]
}

See api source for documentation.