org/homelinux/largo/games/board/Piece.java
changeset 0 e0dbaef72362
child 13 f83884cc7d2f
new file mode 100644
--- /dev/null
+++ b/org/homelinux/largo/games/board/Piece.java
@@ -0,0 +1,29 @@
+/**
+ *   $Id: Piece.java 138 2008-04-25 04:37:08Z mbroeker $
+ *  $URL: http://localhost/svn/eclipse/Schachspiel/trunk/org/homelinux/largo/games/board/Piece.java $
+ */
+
+package org.homelinux.largo.games.board;
+
+import java.awt.Image;
+
+public class Piece extends Object {
+	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(Image img, String c, int t, int v) {
+		image = img;
+		color = c;
+		type = t;
+		value = v;
+	}
+}