org/homelinux/largo/games/board/History.java
changeset 13 f83884cc7d2f
parent 0 e0dbaef72362
child 16 55b0d5006e7b
--- a/org/homelinux/largo/games/board/History.java
+++ b/org/homelinux/largo/games/board/History.java
@@ -5,28 +5,26 @@
 
 package org.homelinux.largo.games.board;
 
-import org.homelinux.largo.games.board.Piece;
+public class History {
+    Piece piece;
+    int pos;
+    boolean turn;
 
-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 History(Piece p, int n, boolean t) {
+        piece = new Piece(p);
+        pos = n;
+        turn = t;
+    }
 
-	public Piece piece() {
-		return piece;
-	}
+    public Piece piece() {
+        return piece;
+    }
 
-	public int pos() {
-		return pos;
-	}
+    public int pos() {
+        return pos;
+    }
 
-	public boolean turn() {
-		return turn;
-	}
+    public boolean turn() {
+        return turn;
+    }
 }