This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
JRummikub/src/jrummikub/model/IPlayer.java
Jannis Harder 8c3c66f361 Implemented routine to check if initial melds are possible
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@266 72836036-5685-4462-b002-a69064685172
2011-05-24 21:57:18 +02:00

37 lines
No EOL
593 B
Java

package jrummikub.model;
/**
* Interface for {@link Player} model
*/
public interface IPlayer {
/**
* Get the current hand of the player
*
* @return the player's hand
*/
public IHand getHand();
/**
* Has the player laid out yet?
*
* @return if the player has laid out
*/
public boolean getLaidOut();
/**
* Returns the player settings
*
* @return the player settings
*/
public PlayerSettings getPlayerSettings();
/**
* Set if the player laid out
*
* @param laidOut
* the player laid out
*
*/
void setLaidOut(boolean laidOut);
}