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

12 lines
179 B
C++

#ifndef PLAYERLIST_H
#define PLAYERLIST_H
#include "player.h"
#include <QList>
class PlayerList : public QList<Player *> {
public:
Player *findPlayer(int id) const;
};
#endif