1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00
This commit is contained in:
Cedric Beust 2016-06-15 03:36:15 -08:00
parent f1e75223a3
commit a52dd19f3f

View file

@ -17,6 +17,9 @@ import java.io.File
import java.nio.file.Paths
interface IProgressListener {
/**
* progress is an integer between 0 and 100 that represents the percentage.
*/
fun onProgress(progress: Int? = null, message: String? = null)
}