jimu-decompiled/sources/com/tencent/wxop/stat/StatGameUser.java
2025-05-13 19:24:51 +02:00

61 lines
1.3 KiB
Java

package com.tencent.wxop.stat;
/* loaded from: classes.dex */
public class StatGameUser implements Cloneable {
private String a;
private String b;
private String c;
public StatGameUser() {
this.a = "";
this.b = "";
this.c = "";
}
public StatGameUser(String str, String str2, String str3) {
this.a = "";
this.b = "";
this.c = "";
this.b = str;
this.a = str2;
this.c = str3;
}
/* renamed from: clone, reason: merged with bridge method [inline-methods] */
public StatGameUser m18clone() {
try {
return (StatGameUser) super.clone();
} catch (CloneNotSupportedException unused) {
return null;
}
}
public String getAccount() {
return this.b;
}
public String getLevel() {
return this.c;
}
public String getWorldName() {
return this.a;
}
public void setAccount(String str) {
this.b = str;
}
public void setLevel(String str) {
this.c = str;
}
public void setWorldName(String str) {
this.a = str;
}
public String toString() {
return "StatGameUser [worldName=" + this.a + ", account=" + this.b + ", level=" + this.c + "]";
}
}