blob: 9bc4dc3d260f878022dbeb79dd2954d02b4f7ad2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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;
}
}
|