commonMain.com.soywiz.korui.UiMenu.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of korgw Show documentation
Show all versions of korgw Show documentation
Portable UI with accelerated graphics support for Kotlin
package com.soywiz.korui
import com.soywiz.korim.bitmap.*
data class UiMenu(val children: List) {
constructor(vararg children: UiMenuItem) : this(children.toList())
}
data class UiMenuItem(val text: String, val children: List? = null, val icon: Bitmap? = null, val action: () -> Unit = {}) {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy