feat: 魔改网易登录接口
Some checks failed
Java CI with Gradle / build (push) Failing after 2m28s

This commit is contained in:
2025-01-28 19:20:32 +08:00
parent e99407132f
commit 0f52dbaaf8
5 changed files with 289 additions and 39 deletions

View File

@@ -19,7 +19,7 @@ public final class GameProfile {
private final UUID id;
private final String undashedId;
private final String name;
private String name;
private final List<Property> properties;
/**
@@ -80,6 +80,10 @@ public final class GameProfile {
return name;
}
public void setName(String name) {
this.name = name;
}
/**
* Returns an immutable list of profile properties associated with this profile.
*