1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! Module for managing the state of a Klondike game.

pub use self::area::AreaId;
pub use self::card::{Card, Color, Rank, Suit};
pub use self::game::Game;
pub use self::settings::Settings;

pub mod area;
pub mod area_list;
pub mod card;
pub mod dealer;
pub mod game;
pub mod settings;
pub mod stack;