chironaut 0.3.5

A poker game library for Texas Hold'em and other poker variants
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod card;
pub mod deck;
pub mod hand;
pub mod player;
pub mod game;
pub mod rules;
pub mod action;
pub mod evaluation;

// Re-export main components
pub use card::{Card, Suit, Rank};
pub use deck::Deck;
pub use hand::Hand;
pub use player::Player;
pub use game::{Game, GameSnapshot, PlayerSnapshot};
pub use rules::GameVariant;
pub use action::Action;