diff --git a/org/homelinux/largo/games/board/Piece.java b/org/homelinux/largo/games/board/Piece.java --- 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; + } }