Untitled
unknown
plain_text
5 years ago
262 B
10
Indexable
public class ResourcesExploiter {
private int rsc;
public void setRsc(int n) {
rsc = n;
}
public int getRsc() {
return rsc;
}
public ResourcesExploiter(int n) {
rsc = n;
}
public void exploit() {
setRsc(getRsc()+1);
}
}
Editor is loading...