mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-06-28 12:08:09 +03:00
[FIX] Implement getMinecraftVersion()
This commit is contained in:
parent
cacbbfc8ed
commit
15ed66b3d5
2 changed files with 6 additions and 0 deletions
|
@ -295,6 +295,11 @@ public UUID getUUID() {
|
|||
return uuid;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMinecraftVersion() {
|
||||
return version.toString();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getDescription() {
|
||||
return info;
|
||||
|
|
|
@ -21,6 +21,7 @@ interface UpdateInfo {
|
|||
interface ClientProfile {
|
||||
String getName();
|
||||
UUID getUUID();
|
||||
String getMinecraftVersion();
|
||||
String getDescription();
|
||||
List<OptionalMod> getOptionalMods();
|
||||
String getProperty(String name);
|
||||
|
|
Loading…
Reference in a new issue