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

import java.lang.Comparable;

import com.badlogic.gdx.utils.Disposable;
import com.badlogic.gdx.utils.Pool;
import com.badlogic.gdx.utils.Json;

public abstract class Order implements Disposable, Pool.Poolable, Json.Serializable, Comparable<Pawn>
{
    public interface OrderType
    {
    }

    public abstract boolean isA(OrderType type);
}