X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/FreeShisen/blobdiff_plain/b023eec723db5ee6d0a6a6aca7795c391d98377e..d0e04237b00df7c11616f359200255a8b47e79d7:/src/org/proofofconcept/shisensho/Move.java diff --git a/src/org/proofofconcept/shisensho/Move.java b/src/org/proofofconcept/shisensho/Move.java deleted file mode 100644 index 1b51289..0000000 --- a/src/org/proofofconcept/shisensho/Move.java +++ /dev/null @@ -1,17 +0,0 @@ -package org.proofofconcept.shisensho; - -public class Move { - public Move(Point a, Point b, char piece) { - this.a=a; - this.b=b; - this.piece=piece; - } - - public String toString() { - return a+"-"+b+"("+Board.pieceToString(piece)+")"; - } - - public Point a; - public Point b; - public char piece; -}