Made Stone class public

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@12 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Matthias Schiffer 2011-04-28 19:46:25 +02:00
parent 2a4e4f0a83
commit dfa743bde0

View file

@ -5,7 +5,7 @@ public class Stone {
private StoneColor color;
private final boolean joker;
Stone(int value, StoneColor color, boolean joker) {
public Stone(int value, StoneColor color, boolean joker) {
this.value = value;
this.color = color;
this.joker = joker;