From 91178431c6491f404a8cda2f92c56856aa80e2a5 Mon Sep 17 00:00:00 2001 From: cemal Date: Wed, 13 Apr 2022 15:56:57 +0200 Subject: [PATCH] added Tile getters/setters --- src/main/java/latice/model/Tile.java | 8 ++++++++ 1 file changed, 8 insertions(+) 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; + } }