commonMain.ru.casperix.spine.json.component.BoundingBoxAttachmentJson.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.SerialName
import kotlinx.serialization.Serializable
@SerialName("boundingbox")
@Serializable
class BoundingBoxAttachmentJson(
override val name:String = "",
val vertexCount:Int,
val vertices: List,
val color: String = "60F000FF",
) : AttachmentJson