package game.deck; /** * Factory for creating Decks */ public interface DeckFactory { public Deck createDeck(); }