Updated Gradle

This commit is contained in:
Matt
2016-02-22 23:11:28 -05:00
parent 7b15d50674
commit b69e31129d
407 changed files with 15242 additions and 15248 deletions

View File

@ -0,0 +1,24 @@
package com.plotsquared.sponge.object;
import com.intellectualcrafters.plot.object.OfflinePlotPlayer;
import java.util.UUID;
public class SpongeOfflinePlayer implements OfflinePlotPlayer {
@Override public UUID getUUID() {
return null;
}
@Override public long getLastPlayed() {
return 0;
}
@Override public boolean isOnline() {
return false;
}
@Override public String getName() {
return null;
}
}