stellar

Stellar - Chess engine written in C
Log | Files | Refs

score.h (310B)


      1 #ifndef STELLAR_SCORE_H
      2 #define STELLAR_SCORE_H
      3 
      4 #include "board.h"
      5 #include "moves.h"
      6 #include "stats.h"
      7 
      8 int Score_position(ePiece piece, eColor color, Square square);
      9 void Score_move_list(const Stats *stats, MoveList *list);
     10 int Score_capture(ePiece src, ePiece tgt);
     11 int Score_value(ePiece piece);
     12 
     13 #endif