12 lines
179 B
C++
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
|