ZenScript main repository

MutableLiveBool.java 178B

123456789
  1. package live;
  2. public interface MutableLiveBool extends LiveBool {
  3. void setValue(boolean value);
  4. default void toggle() {
  5. this.setValue(!getValue());
  6. }
  7. }