summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model/Hand.java
blob: 644ae947c9ece46a3d32b9745c00d30e8f4a4d28 (plain)
1
2
3
4
5
6
7
8
9
10
package jrummikub.model;

/** Class managing a {@link Player}'s {@link Stone}s */
public class Hand extends StoneTray<Stone> implements IHand {

	@Override
	protected Position fixInvalidDrop(Stone stone, Position pos) {
		return null;
	}
}