servatrice/cockatrice/src/zonelist.h
Max-Wilhelm Bruker a11f93df4d initial commit
2009-03-13 22:50:41 +01:00

12 lines
196 B
C++

#ifndef ZONELIST_H
#define ZONELIST_H
#include "playerzone.h"
#include <QList>
class ZoneList : public QList<PlayerZone *> {
public:
PlayerZone *findZone(const QString &name) const;
};
#endif