Multiple inner classes extracted from LootManager.

This commit is contained in:
2023-08-03 09:43:30 -04:00
parent 0bb756521b
commit fda3386e7b
10 changed files with 161 additions and 132 deletions
+18
View File
@@ -0,0 +1,18 @@
package engine.loot;
import java.util.ArrayList;
public class GenTable {
public ArrayList<GenTableRow> rows = new ArrayList<GenTableRow>();
public GenTableRow getRowForRange(int roll) {
GenTableRow outRow = null;
for (GenTableRow iteration : this.rows)
if (roll >= iteration.minRoll && roll <= iteration.maxRoll)
outRow = iteration;
return outRow;
}
}