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