diff options
| author | Botahamec <botahamec@outlook.com> | 2021-07-08 20:32:44 -0400 |
|---|---|---|
| committer | Botahamec <botahamec@outlook.com> | 2021-07-08 20:32:44 -0400 |
| commit | 7e73782a7d51b40a558b74793c1d6c1abdea857d (patch) | |
| tree | fba843de026f20cbcca0272c4ef521a6d4ac7ef9 /model/src/lib.rs | |
here's what i have so far
Diffstat (limited to 'model/src/lib.rs')
| -rw-r--r-- | model/src/lib.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/model/src/lib.rs b/model/src/lib.rs new file mode 100644 index 0000000..7b21be5 --- /dev/null +++ b/model/src/lib.rs @@ -0,0 +1,10 @@ +mod board; +mod color; +mod moves; +mod moves_iter; +mod possible_moves; + +pub use board::CheckersBitBoard; +pub use color::PieceColor; +pub use moves::Move; +pub use possible_moves::PossibleMoves; |
