mirror of
				https://github.com/Theta-Dev/ConstructionWand.git
				synced 2025-11-03 20:53:49 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			500 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			500 B
		
	
	
	
		
			Java
		
	
	
	
	
	
package thetadev.constructionwand.items.core;
 | 
						|
 | 
						|
import thetadev.constructionwand.api.IWandAction;
 | 
						|
import thetadev.constructionwand.wand.action.ActionDestruction;
 | 
						|
 | 
						|
public class ItemCoreDestruction extends ItemCore
 | 
						|
{
 | 
						|
    public ItemCoreDestruction(String name, Properties properties) {
 | 
						|
        super(name, properties);
 | 
						|
    }
 | 
						|
 | 
						|
    @Override
 | 
						|
    public int getColor() {
 | 
						|
        return 0xFF0000;
 | 
						|
    }
 | 
						|
 | 
						|
    @Override
 | 
						|
    public IWandAction getWandAction() {
 | 
						|
        return new ActionDestruction();
 | 
						|
    }
 | 
						|
}
 |