twentyone 0.2.0

A blackjack engine for Rust.
Documentation
1
2
3
4
5
//! Functions and structures required in almost all situations
pub use crate::cards::{create_deck, create_shoe, shuffle_deck};
pub use crate::game::{
    Dealer, DealerRequest, GameConfig, Player, PlayerAction, PlayerActionError, DEFAULT_CONFIG,
};