summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/rustanddust/game/Battle.java
blob: abf91db7e2b381127cd119a2e7c26d11bd1ee192 (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
28
29
30
31
32
33
34
35
36
37
38
package ch.asynk.rustanddust.game;

import ch.asynk.rustanddust.game.Zone;
import ch.asynk.rustanddust.game.Unit;
import ch.asynk.rustanddust.game.Player;
import ch.asynk.rustanddust.game.battles.Factory.MapType;
import ch.asynk.rustanddust.ui.Position;

public interface Battle
{
    public String getName();

    public String getDescription();

    public Player getPlayer();

    public Player getOpponent();

    public MapType getMapType();

    public void changePlayer();

    public Player checkVictory(Ctrl ctrl);

    public boolean getReinforcement(Ctrl ctrl);

    public Zone getEntryZone(Unit unit);

    public Zone getExitZone(Unit unit);

    public Position getHudPosition();

    public State.StateType getState();

    public boolean deploymentDone();

    public Map setup(Ctrl ctrl);
}