All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy