Many things

This commit is contained in:
Anuken
2020-09-27 17:15:31 -04:00
parent ff84d72e20
commit 3bf01334c9
8 changed files with 90 additions and 21 deletions

View File

@@ -6,7 +6,8 @@ public enum ConditionOp{
lessThan("<", (a, b) -> a < b),
lessThanEq("<=", (a, b) -> a <= b),
greaterThan(">", (a, b) -> a > b),
greaterThanEq(">=", (a, b) -> a >= b);
greaterThanEq(">=", (a, b) -> a >= b),
always("always", (a, b) -> true);
public static final ConditionOp[] all = values();