org/homelinux/largo/games/board/History.java
author Markus Bröker<broeker.markus@googlemail.com>
Fri, 27 Jan 2017 21:25:15 +0100
changeset 16 55b0d5006e7b
parent 13 f83884cc7d2f
permissions -rw-r--r--
Sourcecode neu formatiert und ins Jahr 2017 migriert Eine 9 Jahre alte Software konnte mit einigen Korrekturen wieder belebt werden.

/**
 *  $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;

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;
	}
}