org/homelinux/largo/games/board/Piece.java
changeset 13 f83884cc7d2f
parent 0 e0dbaef72362
child 16 55b0d5006e7b
--- a/org/homelinux/largo/games/board/Piece.java
+++ b/org/homelinux/largo/games/board/Piece.java
@@ -8,22 +8,22 @@
 import java.awt.Image;
 
 public class Piece extends Object {
-	Image image;
-	String color;
-	int type;
-	int value;
+    Image image;
+    String color;
+    int type;
+    int value;
 
-	public Piece(Piece s) {
-		image = s.image;
-		color = s.color;
-		type = s.type;
-		value = s.value;
-	}
+    public Piece(Piece s) {
+        image = s.image;
+        color = s.color;
+        type = s.type;
+        value = s.value;
+    }
 
-	public Piece(Image img, String c, int t, int v) {
-		image = img;
-		color = c;
-		type = t;
-		value = v;
-	}
+    public Piece(Image img, String c, int t, int v) {
+        image = img;
+        color = c;
+        type = t;
+        value = v;
+    }
 }