commonMain.ru.casperix.spine.json.component.EventJson.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spine-jvm Show documentation
Show all versions of spine-jvm Show documentation
Signals for all occasions
package ru.casperix.spine.json.component
import kotlinx.serialization.Serializable
@Serializable
class EventJson(
val int:Int = 0,
val float: Float = 0f,
val string:String? = null,
val audio:String? = null,
val volume: Float = 1f,
val balance: Float = 0f,
)