This commit is contained in:
Anuken
2020-08-06 12:31:42 -04:00
parent 5dc78a24e0
commit ac3106728f
3 changed files with 3 additions and 4 deletions

View File

@@ -36,6 +36,7 @@ public abstract class LogicNode{
@Override
public void build(Table table){
//TODO replace with dropdown menu
TextButton[] button = {null};
button[0] = table.button(op.symbol, Styles.cleart, () -> {
op = BinaryOp.all[(op.ordinal() + 1) % BinaryOp.all.length];