blob: c9415f6155c01d5e5e1b5b5a8a01659e2cfb5611 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package gtPlusPlus.api.interfaces;
public interface RunnableWithInfo<V> extends Runnable {
public V getInfoData();
public default Class<?> getInfoDataType() {
return getInfoData().getClass();
}
}
|