mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-28 11:44:42 +02:00
18 lines
312 B
Java
18 lines
312 B
Java
package com.intellectualcrafters.plot.object;
|
|
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
* Created 2015-02-20 for PlotSquared
|
|
*
|
|
|
|
*/
|
|
public interface OfflinePlotPlayer {
|
|
public UUID getUUID();
|
|
|
|
public long getLastPlayed();
|
|
|
|
public boolean isOnline();
|
|
|
|
public String getName();
|
|
}
|