commonMain.ru.casperix.spine.json.component.SkeletonJson.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
The newest version!
package ru.casperix.spine.json.component
import kotlinx.serialization.Serializable
/**
* https://ru.esotericsoftware.com/spine-json-format
*/
@Serializable
class SkeletonJson(
val skeleton: SkeletonJsonAttributes,
val animations: Map,
val bones: List,
val transform: List? = null,
val events: Map? = null,
val skins: List,
val slots: List,
)