summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/tankontank/game/Battle.java
blob: 5112355800ceab14a9dd10bbd10c1f503344b3f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package ch.asynk.tankontank.game;

import ch.asynk.tankontank.engine.TileSet;
import ch.asynk.tankontank.engine.Orientation;
import ch.asynk.tankontank.game.Unit;
import ch.asynk.tankontank.game.Player;

public interface Battle
{
    public String getName();

    public String getDescription();

    public Map getMap();

    public Player getFirstPlayer();

    public Player getSecondPlayer();

    public void setup(Map map, Player firstPlayer, Player secondPlayer);

    public Player checkVictory(Ctrl ctrl);

    public TileSet getEntryPoint(Unit unit);

    public Orientation getEntryOrientation(Player player);
}