UltimateStacker/UltimateStacker-API/src/main/java/com/craftaro/ultimatestacker/api/stack/block/BlockStack.java

18 lines
484 B
Java

package com.craftaro.ultimatestacker.api.stack.block;
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
import com.craftaro.ultimatestacker.api.utils.Hologramable;
import com.craftaro.ultimatestacker.api.utils.Stackable;
import com.craftaro.core.compatibility.CompatibleMaterial;
import com.craftaro.core.database.Data;
public interface BlockStack extends Stackable, Hologramable, Data {
int getId();
void destroy();
XMaterial getMaterial();
}