amanda.hinchman-dominguez
05/21/2018, 4:49 AMprivate fun housePane(position: Pos): StackPane {
val houseNum = (1..6).random()
return stackpane {
rectangle {
fill = c("4E9830")
width = 100.0
height = 100.0
}
imageview("house$houseNum.png").apply {
alignment = position
}
}
}