mirror of
https://github.com/Nan1t/NanoLimbo.git
synced 2025-07-13 13:10:13 +02:00
26 lines
422 B
Java
26 lines
422 B
Java
package ru.nanit.limbo.connection;
|
|
|
|
import java.util.UUID;
|
|
|
|
public class GameProfile {
|
|
|
|
private String username;
|
|
private UUID uuid;
|
|
|
|
public String getUsername() {
|
|
return username;
|
|
}
|
|
|
|
public UUID getUuid() {
|
|
return uuid;
|
|
}
|
|
|
|
public void setUsername(String username) {
|
|
this.username = username;
|
|
}
|
|
|
|
public void setUuid(UUID uuid) {
|
|
this.uuid = uuid;
|
|
}
|
|
}
|