From 837651d0c66f59601a329c3f32564d3f5f171d76 Mon Sep 17 00:00:00 2001 From: mathi Date: Tue, 12 Apr 2022 16:22:07 +0200 Subject: [PATCH] Add Shape and Tile --- src/main/java/latice/model/Tile.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/main/java/latice/model/Tile.java diff --git a/src/main/java/latice/model/Tile.java b/src/main/java/latice/model/Tile.java new file mode 100644 index 0000000..7b06526 --- /dev/null +++ b/src/main/java/latice/model/Tile.java @@ -0,0 +1,11 @@ +package latice.model; + +public class Tile { + Color color; + Shape shape; + + public Tile(Color color, Shape shape) { + this.color = color; + this.shape = shape; + } +}