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

dev.robocode.tankroyale.gui.ui.components.RcList.kt Maven / Gradle / Ivy

package dev.robocode.tankroyale.gui.ui.components

import javax.swing.JList
import javax.swing.ListModel

open class RcList(dataModel: ListModel? = null) : JList(dataModel) {
    override fun createToolTip() = RcToolTip()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy