RoundControl: Create players from player settings list from game settings

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@253 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Matthias Schiffer 2011-05-18 17:01:11 +02:00
parent b5397d5aa7
commit e76977652d
5 changed files with 54 additions and 22 deletions

View file

@ -51,9 +51,9 @@ public class GameControl {
return;
}
RoundState gameState = new RoundState(gameSettings);
RoundState roundState = new RoundState(gameSettings);
roundControl = new RoundControl(gameState, view);
roundControl = new RoundControl(roundState, view);
roundControl.getEndRoundEvent().add(new IListener() {
@Override