/* * File: decks.cc * Summary: Functions with decks of cards. * * Modified for Crawl Reference by $Author$ on $Date$ * * Change History (most recent first): * * <1> -/--/-- LRH Created */ #ifndef DECKS_H #define DECKS_H #include "enum.h" // last updated 12may2000 {dlb} /* *********************************************************************** * called from: it_use_3 - religion * *********************************************************************** */ void deck_of_cards(deck_type which_deck); deck_type subtype_to_decktype(int subtype); bool deck_triple_draw(); #endif