1 2 3 4 5 6 7 8 9 10 11 12 13 14
package ch.asynk.tankontank.game; import ch.asynk.tankontank.engine.Orientation; public class Zone extends HexSet { public int allowedMoves; public Orientation orientation; public Zone(Map map, int n) { super(map, n); } }