-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,24 @@ | ||
//! # Goldchess - A chess library | ||
//! | ||
//! <p align="center"> | ||
//! <img src="https://github.com/bsamseth/goldfish/blob/main/logo.jpg?raw=true" width=60% alt="Logo, a goldfish playing chess."/> | ||
//! </p> | ||
//! | ||
//! This is a library useful for writing chess engines in Rust. Its primary reason to exist is to | ||
//! support the [Goldfish](https://github.com/bsamseth/goldfish) chess engine, but very well might be useful for other projects as well. | ||
mod bitboard; | ||
mod color; | ||
mod error; | ||
mod file; | ||
mod generated_tables; | ||
mod piece; | ||
mod rank; | ||
mod square; | ||
|
||
pub use bitboard::Bitboard; | ||
pub use color::Color; | ||
pub use error::{Error, Result}; | ||
pub use file::File; | ||
pub use piece::Piece; | ||
pub use rank::Rank; | ||
pub use square::Square; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters