Archived
0

добавлен H2Player

This commit is contained in:
2018-09-06 13:20:59 +03:00
parent bd72950db5
commit 56bcd7a730
4 changed files with 27 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ import java.util.UUID;
public interface Player {
int getId();
UUID getUUID();
UUID getUuid();
String getName();
boolean isOnline();

View File

@@ -30,7 +30,7 @@ public class SimplePlayer implements Player {
}
@Override
public UUID getUUID() {
public UUID getUuid() {
return uuid;
}