Files
ctf/2026/insomnihack/mobile/peaky_binders/jadx_srcs/peaky.binders/Achievement.java

42 lines
927 B
Java

package com.peaky.binders;
/* JADX INFO: loaded from: classes.dex */
public class Achievement {
private String description;
private String lockedDescription;
private int number;
private String title;
private boolean unlocked;
public Achievement(int i, String str, String str2, String str3, boolean z) {
this.number = i;
this.title = str;
this.description = str2;
this.lockedDescription = str3;
this.unlocked = z;
}
public int getNumber() {
return this.number;
}
public String getTitle() {
return this.title;
}
public String getDescription() {
return this.description;
}
public String getLockedDescription() {
return this.lockedDescription;
}
public boolean isUnlocked() {
return this.unlocked;
}
public void setUnlocked(boolean z) {
this.unlocked = z;
}
}