added Tile getters/setters

master
Cemal Odabasioglu 2022-04-13 15:56:57 +02:00
parent 837651d0c6
commit 91178431c6
1 changed files with 8 additions and 0 deletions

View File

@ -8,4 +8,12 @@ public class Tile {
this.color = color; this.color = color;
this.shape = shape; this.shape = shape;
} }
public Color getColor() {
return color;
}
public Shape getShape() {
return shape;
}
} }