Initial push

This commit is contained in:
ceikry 2021-07-15 19:28:03 -05:00
commit dee36e793b
27 changed files with 554 additions and 0 deletions

View file

@ -0,0 +1,6 @@
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)
}