freecell 0.1.0

Game objects and rules for the solitaire card game FreeCell
Documentation
1
2
3
4
5
6
7
8
9
mod card;
mod colour;
mod rank;
mod suit;

pub use self::card::Card;
pub use self::colour::{Color, Colour};
pub use self::rank::{rank_from_string, Rank, ACE, JACK, KING, QUEEN};
pub use self::suit::Suit;