freecell 0.1.0

Game objects and rules for the solitaire card game FreeCell
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![forbid(unsafe_code)]

pub mod game_state_parser;

mod card;
mod card_collections;
mod game_move;
mod game_state;

pub use self::card::{rank_from_string, Card, Color, Colour, Rank, Suit, ACE, JACK, KING, QUEEN};
pub use self::card_collections::{CardCollection, Cascade, Cascades, Foundation, Foundations, Freecells};
pub use self::game_move::{Move, Position};
pub use self::game_state::{GameState, GameStateId};