Extra mod field parsing (untested)

This commit is contained in:
Anuken
2020-10-07 11:00:02 -04:00
parent d4513fab19
commit be66a15287
10 changed files with 215 additions and 134 deletions

View File

@@ -30,6 +30,7 @@ public class PlacementFragment extends Fragment{
final int rowWidth = 4;
public Category currentCategory = Category.distribution;
Seq<Block> returnArray = new Seq<>(), returnArray2 = new Seq<>();
Seq<Category> returnCatArray = new Seq<>();
boolean[] categoryEmpty = new boolean[Category.all.length];
@@ -80,6 +81,10 @@ public class PlacementFragment extends Fragment{
});
}
public Displayable hover(){
return hover;
}
void rebuild(){
currentCategory = Category.turret;
Group group = toggler.parent;