blob: 2f131084467e4ae8308e428bb8dfa4d871030f86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package ch.asynk.tankontank.game;
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 boolean checkVictory(Map map, Player player);
}
|