commonMain.com.lehaine.littlekt.Disposable.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-jvm Show documentation
Show all versions of core-jvm Show documentation
Kotlin Multiplatform 2D Game Framework
package com.lehaine.littlekt
/**
* @author Colton Daily
* @date 11/19/2021
*/
interface Disposable {
fun dispose()
}