#ifndef _PIECE
#define _PIECE

#include "types.h"

int piece_character(Piece p);
Piece* new_piece(Color, PieceType);

#endif