there are players now :-) every game is better with players
[multypo.git] / qt / player.h
diff --git a/qt/player.h b/qt/player.h
new file mode 100644 (file)
index 0000000..f725069
--- /dev/null
@@ -0,0 +1,18 @@
+#ifndef PLAYER_H
+#define PLAYER_H
+
+#include <QString>
+#include <QLabel>
+
+class Player
+{
+private:
+       QString name;
+       QString currentLine;
+       QLabel* theLabel;
+public:
+       Player(QWidget* parent);
+       void handleKey(QString);
+};
+
+#endif // PLAYER_H