diff --git a/org/homelinux/largo/games/board/History.java b/org/homelinux/largo/games/board/History.java new file mode 100644 --- /dev/null +++ b/org/homelinux/largo/games/board/History.java @@ -0,0 +1,32 @@ +/** + * $Id: History.java 150 2008-04-26 01:18:25Z mbroeker $ + * $URL: http://localhost/svn/eclipse/Schachspiel/trunk/org/homelinux/largo/games/board/History.java $ + */ + +package org.homelinux.largo.games.board; + +import org.homelinux.largo.games.board.Piece; + +public class History { + Piece piece; + int pos; + boolean turn; + + public History(Piece p, int n, boolean t) { + piece = new Piece(p); + pos = n; + turn = t; + } + + public Piece piece() { + return piece; + } + + public int pos() { + return pos; + } + + public boolean turn() { + return turn; + } +}