za.co.knowles.pokewhat.domain.GameState Maven / Gradle / Ivy
package za.co.knowles.pokewhat.domain;
import za.co.knowles.pokewhat.domain.lookup.EGameState;
import java.util.List;
public class GameState {
private final EGameState state;
private final List currentCards;
public GameState(EGameState gameState, List currentCards) {
state = gameState;
this.currentCards = currentCards;
}
public EGameState getState() {
return state;
}
public List getCurrentCards() {
return currentCards;
}
}