create TerraOptionsScreen

This commit is contained in:
dfsek
2021-05-09 01:24:04 -07:00
parent 1186fc6624
commit 66758859bb
9 changed files with 176 additions and 14 deletions

View File

@@ -13,6 +13,11 @@ public class MutableInteger extends MutableNumber<Integer> {
add(1);
}
public void addMod(int add, int mod) {
add(add);
value %= mod;
}
public void decrement() {
subtract(1);
}