GameState ist jetzt RoundState
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@249 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
d0a7014577
commit
b3c903a2ad
7 changed files with 19 additions and 19 deletions
|
@ -5,9 +5,9 @@ import java.util.ArrayList;
|
|||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Mock class for {@link GameState}
|
||||
* Mock class for {@link RoundState}
|
||||
*/
|
||||
public class MockGameState implements IGameState {
|
||||
public class MockRoundState implements IRoundState {
|
||||
/** */
|
||||
public MockTable table;
|
||||
/** */
|
||||
|
@ -20,7 +20,7 @@ public class MockGameState implements IGameState {
|
|||
public StoneHeap gameHeap;
|
||||
|
||||
/** */
|
||||
public MockGameState() {
|
||||
public MockRoundState() {
|
||||
table = new MockTable();
|
||||
players = new ArrayList<MockPlayer>();
|
||||
players.add(new MockPlayer("Player 1", Color.RED));
|
Reference in a new issue