|
@@ -12,9 +12,8 @@ public class Hut extends InteractiveTile{
|
|
|
Graphics2D g2;
|
|
Graphics2D g2;
|
|
|
|
|
|
|
|
public Hut(GameController gc) {
|
|
public Hut(GameController gc) {
|
|
|
- super(height, width, xCoordinate, yCoordinate, () -> {;
|
|
|
|
|
- // Action to perform when the hut is clicked
|
|
|
|
|
- //System.out.println("CLICKED HUT");
|
|
|
|
|
|
|
+ super(height, width, xCoordinate, yCoordinate, () -> {
|
|
|
|
|
+ System.out.println("CLICKED HUT");
|
|
|
//PopUpTile popUpTile = new PopUpTile(g2, xCoordinate, yCoordinate, width, height);
|
|
//PopUpTile popUpTile = new PopUpTile(g2, xCoordinate, yCoordinate, width, height);
|
|
|
}, gc);
|
|
}, gc);
|
|
|
}
|
|
}
|