package com.encrox.zombie.interactable; import org.bukkit.util.BlockVector; public abstract class Interactable { private BlockVector bv; private int cost; public Interactable(BlockVector bv, int cost) { this.bv = bv; this.cost = cost; } public int getCost() { return cost; } public BlockVector getBlockVector() { return bv; } }