there are players now :-) every game is better with players
[multypo.git] / qt / player.h
1 #ifndef PLAYER_H
2 #define PLAYER_H
3
4 #include <QString>
5 #include <QLabel>
6
7 class Player
8 {
9 private:
10         QString name;
11         QString currentLine;
12         QLabel* theLabel;
13 public:
14         Player(QWidget* parent);
15         void handleKey(QString);
16 };
17
18 #endif // PLAYER_H