mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-02 03:23:56 -07:00
initial commit
This commit is contained in:
commit
a11f93df4d
99 changed files with 7493 additions and 0 deletions
12
cockatrice/src/playerlist.h
Normal file
12
cockatrice/src/playerlist.h
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#ifndef PLAYERLIST_H
|
||||
#define PLAYERLIST_H
|
||||
|
||||
#include "player.h"
|
||||
#include <QList>
|
||||
|
||||
class PlayerList : public QList<Player *> {
|
||||
public:
|
||||
Player *findPlayer(int id) const;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue