aboutsummaryrefslogtreecommitdiff
path: root/src/move.h
diff options
context:
space:
mode:
authoreug-vs <eugene@eug-vs.xyz>2023-06-26 20:01:36 +0300
committereug-vs <eugene@eug-vs.xyz>2023-06-26 20:01:36 +0300
commit72761f770a73e3e8fac9b57043ed19f084bfb230 (patch)
treebc482dc87dfbddd4cd9a71461d37e9dde41cfb45 /src/move.h
parentc3474b1481a02baefda1abe286d4fbef39597bce (diff)
downloadj1chess-tmp.tar.gz
tmp: save progress from @black-pearltmp
Diffstat (limited to 'src/move.h')
-rw-r--r--src/move.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/move.h b/src/move.h
new file mode 100644
index 0000000..4bf244a
--- /dev/null
+++ b/src/move.h
@@ -0,0 +1,6 @@
+#include "bitboard.h"
+
+typedef struct {
+ Bitboard from;
+ Bitboard to;
+} Move;