summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/rustanddust/game/Zone.java
blob: 1fcc4f69d2a40a129883d88c73a7c949dda8d23b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package ch.asynk.rustanddust.game;

import ch.asynk.rustanddust.engine.Orientation;
import ch.asynk.rustanddust.engine.TileSet;

public class Zone extends TileSet
{
    public int allowedMoves;
    public Orientation orientation;

    public Zone(Map map, int n)
    {
        super(map, n);
    }
}