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

15
src/piece.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef PIECE_H
#define PIECE_H
#include "chessdefs.h"
#include "board.h"
typedef struct piece {
short piece;
short color;
SQUARE square;
short castle;
float value;
} PIECE, PLAYER_PIECES[16];
#endif