stellar

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

rook.hpp (236B)


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