This commit is contained in:
yushijinhun
2019-02-23 18:38:43 +08:00
parent 608a531655
commit 1bf2f17538
2 changed files with 17 additions and 3 deletions

View File

@@ -18,6 +18,7 @@
package org.jackhuang.hmcl.auth.yggdrasil;
import org.jackhuang.hmcl.util.Immutable;
import org.jetbrains.annotations.Nullable;
import java.util.Map;
@@ -36,10 +37,12 @@ public final class Texture {
this.metadata = metadata;
}
@Nullable
public String getUrl() {
return url;
}
@Nullable
public Map<String, String> getMetadata() {
return metadata;
}