All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.cinematic.Scene.kt Maven / Gradle / Ivy

There is a newer version: 3.0.15
Show newest version
@file:JsExport
@file:Suppress("NON_EXPORTABLE_TYPE")

package cinematic

import kotlinx.JsExport

abstract class Scene(state: S) : BaseScene() {

    val ui: MutableLive<@UnsafeVariance S> = mutableLiveOf(state)
    override fun onCleared() {
        ui.stopAll()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy