ConstructionWand/src/main/java/thetadev/constructionwand/items/core/CoreDefault.java
2021-03-07 18:00:10 +01:00

25 lines
643 B
Java

package thetadev.constructionwand.items.core;
import net.minecraft.util.ResourceLocation;
import thetadev.constructionwand.ConstructionWand;
import thetadev.constructionwand.api.IWandAction;
import thetadev.constructionwand.api.IWandCore;
import thetadev.constructionwand.wand.action.ActionConstruction;
public class CoreDefault implements IWandCore
{
@Override
public int getColor() {
return -1;
}
@Override
public IWandAction getWandAction() {
return new ActionConstruction();
}
@Override
public ResourceLocation getRegistryName() {
return ConstructionWand.loc("default");
}
}