/*
        dealpile.cpp

        V1.00 - 151096  Kimmo Teräväinen
        -----   ------  ----------------
        Look dealpile.h

*/

#include "dealpile.h"

void cDealPile::Shuffle()
{
  int p,q;
  cIMGCard *card;
  cards[0]->Hide();
  for(int i=2*max ; i ; i--) {
    p=rand()%n; q=rand()%n;
    card=cards[p];
    cards[p]=cards[q];
    cards[q]=card;
  }
  cards[0]->Show();
}

void cDealPile::Lift()
{
}



