io.github.sefiraat.slimetinker.items.workstations.smeltery.AbstractCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SlimeTinker Show documentation
Show all versions of SlimeTinker Show documentation
Slimefun4 Addon SlimeTinker
The newest version!
package io.github.sefiraat.slimetinker.items.workstations.smeltery;
import me.mrCookieSlime.Slimefun.api.inventory.BlockMenu;
public abstract class AbstractCache {
protected final BlockMenu blockMenu;
protected AbstractCache(BlockMenu blockMenu) {
this.blockMenu = blockMenu;
}
}