From e4bc09a6ad783b3f858644ab32947db4dbd025fa Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sat, 30 Apr 2011 16:47:38 +0200 Subject: Paint Jokers git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@27 72836036-5685-4462-b002-a69064685172 --- src/jrummikub/JRummikub.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/jrummikub/JRummikub.java') diff --git a/src/jrummikub/JRummikub.java b/src/jrummikub/JRummikub.java index 7ef1627..552ca8f 100644 --- a/src/jrummikub/JRummikub.java +++ b/src/jrummikub/JRummikub.java @@ -50,8 +50,12 @@ public class JRummikub { Map stones = new HashMap(); stones.put(new Stone(1, StoneColor.ORANGE, false), new Position(0, 0)); - stones.put(new Stone(1, StoneColor.BLUE, false), new Position(1, 0)); - stones.put(new Stone(1, StoneColor.RED, false), new Position(0.5f, 1)); + stones.put(new Stone(10, StoneColor.BLUE, false), new Position(1, 0)); + stones.put(new Stone(9, StoneColor.RED, false), new Position(0.5f, 1)); + stones.put(new Stone(7, StoneColor.BLACK, false), new Position(1.75f, 1)); + + stones.put(new Stone(0, StoneColor.RED, true), new Position(2.5f, 0)); + stones.put(new Stone(0, StoneColor.BLACK, true), new Position(3.5f, 0)); view.getPlayerPanel().getBoard().setStones(stones); -- cgit v1.2.3