Add Shape and Tile
parent
4dc29b4286
commit
837651d0c6
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue