stellar

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

bishop.hpp (230B)


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