Nothing is implemented, but it can compile and "run" on sponge now.

This commit is contained in:
boy0001 2015-07-28 21:38:49 +10:00
parent 904b75a7cd
commit 89e3bd97f0
35 changed files with 915 additions and 253 deletions

View file

@ -21,12 +21,12 @@ import java.util.UUID;
public class BukkitPlayer implements PlotPlayer {
public final Player player;
UUID uuid;
String name;
private UUID uuid;
private String name;
private int op = 0;
private long last = 0;
public HashSet<String> hasPerm = new HashSet<>();
public HashSet<String> noPerm = new HashSet<>();
private HashSet<String> hasPerm = new HashSet<>();
private HashSet<String> noPerm = new HashSet<>();
private HashMap<String, Object> meta;