A Rust package for the classic Go Fish game.
```rust
let deck = Deck::new().shuffle();
let player_count = 3;
let mut game = Game::new(deck, player_count);
let hook = Hook{target: PlayerId(2), rank: Rank::Ace};
game.take_turn(hook);
```
-
This project is licenced under the MIT licence. See the LICENSE.md for more details.