Untitled

 avatar
unknown
plain_text
4 years ago
262 B
5
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...