Skip to content
Snippets Groups Projects
Position.kt 292 B
Newer Older
EckBalu's avatar
EckBalu committed
package cell

public class Position(x: Int, y: Int) {
EckBalu's avatar
EckBalu committed
    private val x: Int = x
    private val y: Int = y
EckBalu's avatar
EckBalu committed

EckBalu's avatar
EckBalu committed
    public fun setPosition(x: Int, y: Int) {
EckBalu's avatar
EckBalu committed
        this.x = x
        this.y = y
    }
EckBalu's avatar
EckBalu committed

    public fun getX() : Int { return this.x }
    public fun getY() : Int { return this.y }
EckBalu's avatar
EckBalu committed
}