summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/gdx/boardgame
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/ch/asynk/gdx/boardgame')
-rw-r--r--core/src/ch/asynk/gdx/boardgame/Tile.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/src/ch/asynk/gdx/boardgame/Tile.java b/core/src/ch/asynk/gdx/boardgame/Tile.java
index eb491a3..8429c92 100644
--- a/core/src/ch/asynk/gdx/boardgame/Tile.java
+++ b/core/src/ch/asynk/gdx/boardgame/Tile.java
@@ -22,6 +22,7 @@ public class Tile implements Drawable
public Tile parent;
public int acc;
public int searchCount;
+ public boolean roadMarch;
private Overlays overlays;
@@ -48,6 +49,11 @@ public class Tile implements Drawable
return onMap;
}
+ public boolean hasRoad(Orientation orientation)
+ {
+ return false;
+ }
+
public boolean blockLos(final Tile from, final Tile to, float d, float dt)
{
return false;