1pub use crate::domain::Card;
23/// The card turned up after the deal as the "starter".
4pub type StarterCut = Card;
56/// Trait for game states that have a starter card.
7pub trait HasStarterCut {
8/// Returns the current starter card.
9fn starter_cut(&self) -> &StarterCut;
10}