classic-launcher/src/main/kotlin/Extensions.kt
2021-07-15 19:28:03 -05:00

6 lines
No EOL
180 B
Kotlin

import java.awt.Component
fun Component.placeAt(x: Int, y: Int, width: Int, height: Int){
this.setBounds(x,y,width,height)
if(this is ImgButton) this.scale(width,height)
}