initial files
This commit is contained in:
16
src/move.h
Normal file
16
src/move.h
Normal 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
|
Reference in New Issue
Block a user