initial files

This commit is contained in:
2021-10-27 16:09:56 +02:00
commit 264459dc0f
13 changed files with 1468 additions and 0 deletions

16
src/move.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef ROOK_H
#define ROOK_H
#include "chessdefs.h"
#include "position.h"
typedef struct {
PIECE piece;
SQUARE from;
SQUARE to;
} MOVE;
extern MOVE *moves_rook(POS *pos);
#endif