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,12 +1,12 @@
#ifndef ZONELIST_H
#define ZONELIST_H
#include "playerzone.h"
#include "cardzone.h"
#include <QList>
class ZoneList : public QList<PlayerZone *> {
class ZoneList : public QList<CardZone *> {
public:
PlayerZone *findZone(const QString &name) const;
CardZone *findZone(const QString &name) const;
};
#endif