diff --git a/src/main/java/latice/model/Tile.java b/src/main/java/latice/model/Tile.java index 7b06526..676e9c7 100644 --- a/src/main/java/latice/model/Tile.java +++ b/src/main/java/latice/model/Tile.java @@ -8,4 +8,12 @@ public class Tile { this.color = color; this.shape = shape; } + + public Color getColor() { + return color; + } + + public Shape getShape() { + return shape; + } }