stellar

Stellar - UCI Chess engine written in C++20
git clone git://git.dimitrijedobrota.com/stellar.git
Log | Files | Refs | README | LICENSE

bishop.hpp (230B)


      1 #ifndef STELLAR_BISHOP_H
      2 #define STELLAR_BISHOP_H
      3 
      4 #include "utils.hpp"
      5 
      6 namespace attack {
      7 namespace bishop {
      8 
      9 void init(void);
     10 U64 attack(const Square square, U64 occupancy);
     11 
     12 } // namespace bishop
     13 } // namespace attack
     14 
     15 #endif