summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRaúl Benencia <rul@kalgan.cc>2015-03-31 15:13:12 -0300
committerRaúl Benencia <rul@kalgan.cc>2015-03-31 15:13:12 -0300
commit85858c2f6dc624c6c32b9c59b187b378cfc89d9e (patch)
treee7f49278d897ff39964a52337ad9ea3b7f871efd /lib
parentc695131d78839bf96cf9731df8a2a0b07cc0e19f (diff)
add move type
Diffstat (limited to 'lib')
-rw-r--r--lib/move.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/move.c b/lib/move.c
new file mode 100644
index 0000000..3eefcdd
--- /dev/null
+++ b/lib/move.c
@@ -0,0 +1,22 @@
+#include "move.h"
+
+
+/*
+ * Initialize a Move
+ */
+Move move_init(Coord orig, Coord dest) {
+ Move m;
+
+ m.orig = orig;
+ m.dest = dest;
+
+ return m;
+}
+
+/*
+ * Returns 1 if Move is a valid chess movement.
+ */
+int move_is_valid(Move m) {
+ return 1;
+}
+
nihil fit ex nihilo