french_suited_playing_cards/lib.rs
1//! # Crate for implementation of objects commonly used in card games.
2//! Implements the Card-enum which has two possible values:
3//! A standard card with a Rank and a Suit or a joker card with a Color.
4//!
5//! This is in turn used to implement the deck-struct.
6//! Functionality for more deck-types is a work in progress,
7//! but currently supports Standard, Piquet and Jass decks
8
9pub mod card;
10pub use self::card::Card;
11pub use self::card::{color::Color, rank::Rank, suit::Suit};
12
13pub mod deck;
14pub use self::deck::Deck;