Add Shape and Tile

master
mathi 2022-04-12 16:22:07 +02:00
parent 4dc29b4286
commit 837651d0c6
1 changed files with 11 additions and 0 deletions

View File

@ -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;
}
}