ConstructionWand/src/main/java/thetadev/constructionwand/items/core/CoreDefault.java
2021-08-02 23:48:18 +02:00

25 lines
648 B
Java

package thetadev.constructionwand.items.core;
import net.minecraft.resources.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");
}
}