renamed playerzone to cardzone

This commit is contained in:
Max-Wilhelm Bruker 2009-03-25 15:08:36 +01:00
parent 141b116528
commit 8782438fcc
28 changed files with 106 additions and 106 deletions

View file

@ -1,9 +1,9 @@
#ifndef RFGZONE_H
#define RFGZONE_H
#include "playerzone.h"
#include "cardzone.h"
class RfgZone : public PlayerZone {
class RfgZone : public CardZone {
private:
public:
RfgZone(Player *_p);
@ -11,7 +11,7 @@ public:
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
void addCard(CardItem *card, bool reorganize = true, int x = 0, int y = -1);
void reorganizeCards();
void handleDropEvent(int cardId, PlayerZone *startZone, const QPoint &dropPoint);
void handleDropEvent(int cardId, CardZone *startZone, const QPoint &dropPoint);
};
#endif