mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-30 00:56:45 +01:00
25 lines
468 B
Java
25 lines
468 B
Java
|
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;
|
||
|
}
|
||
|
}
|