42 lines
927 B
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;
|
|
}
|
|
} |