mirror of
				https://github.com/Theta-Dev/ConstructionWand.git
				synced 2025-11-03 20:53:49 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			648 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			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");
 | 
						|
    }
 | 
						|
}
 |