mirror of
https://github.com/Theta-Dev/ConstructionWand.git
synced 2025-08-06 02:45:26 +02:00
Modular WandActions and WandSuppliers. Wand Cores and Wand Reservoirs can be added to your wand, they determine which action and supplier gets used.
8 lines
159 B
Java
8 lines
159 B
Java
package thetadev.constructionwand.api;
|
|
|
|
import net.minecraft.util.ResourceLocation;
|
|
|
|
public interface IWandUpgrade
|
|
{
|
|
ResourceLocation getRegistryName();
|
|
}
|