/*
        junkpile.h

        V1.00 - 151096  Kimmo Teräväinen
        -----   ------  ----------------
        V0.01   111196  Taken away from handpile.h
        V0.10   201196  Improved cCardPile, so junkpile is actually same
                        as cCardPile.
*/
#ifndef DC1_POKER_JUNKPILE
#define DC1_POKER_JUNKPILE

#include "cardpile.h"

class cJunkPile : public cCardPile {
public:
  cJunkPile(int lkm=52,int x=500,int y=50) : cCardPile(lkm,x,y) { }
};

#endif
