initial commit

This commit is contained in:
Max-Wilhelm Bruker 2009-03-13 22:50:41 +01:00
commit a11f93df4d
99 changed files with 7493 additions and 0 deletions

12
cockatrice/src/zonelist.h Normal file
View file

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