/////////////////////////////////////////////////////////////////////////////// // // Card.cxx - Card class // // // Bradford W. Mott // Copyright (C) 1994 // November 11,1994 // /////////////////////////////////////////////////////////////////////////////// #include "Card.hxx" #include "Sprite.hxx" /////////////////////////////////////////////////////////////////////////////// // Constructor /////////////////////////////////////////////////////////////////////////////// Card::Card(Sprite* face, int suite, int priority, CardOrientation orientation) : myFace(face), mySuite(suite), myPriority(priority), myOrientation(orientation) { } /////////////////////////////////////////////////////////////////////////////// // Destructor /////////////////////////////////////////////////////////////////////////////// Card::~Card() { }