This commit is contained in:
hyb1996
2017-04-26 13:48:59 +08:00
parent 38fa3b3988
commit 6829c0659e
92 changed files with 3439 additions and 679 deletions

View File

@@ -0,0 +1,10 @@
package com.stardust.util;
/**
* Created by Stardust on 2017/4/18.
*/
public interface Callback<T> {
void call(T t);
}