This commit is contained in:
Izzel_Aliz
2018-04-01 15:18:57 +08:00
parent f5d1edc9e0
commit 946adbb3eb
14 changed files with 252 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package com.ilummc.tlib.bean;
import java.util.function.BiConsumer;
public class BooleanProperty {
private boolean property;
public BooleanProperty(boolean property) {
this.property = property;
}
public void addListener(BiConsumer<Boolean, Boolean> consumer) {
}
}

View File

@@ -0,0 +1,4 @@
package com.ilummc.tlib.bean;
public class Property {
}