package cell public class Position(x: Int, y: Int) {
private val x: Int = x private val y: Int = y
public fun setPosition(x: Int, y: Int) {
this.x = x this.y = y }
public fun getX() : Int { return this.x } public fun getY() : Int { return this.y }
}