X-Git-Url: https://git.ralfj.de/multypo.git/blobdiff_plain/5b3ad773cf2d6f2ead71996f496611561929b657..036922ba5e90ae7f6f6abe3f99b1783dec5132fc:/qt/player.h diff --git a/qt/player.h b/qt/player.h new file mode 100644 index 0000000..f725069 --- /dev/null +++ b/qt/player.h @@ -0,0 +1,18 @@ +#ifndef PLAYER_H +#define PLAYER_H + +#include +#include + +class Player +{ +private: + QString name; + QString currentLine; + QLabel* theLabel; +public: + Player(QWidget* parent); + void handleKey(QString); +}; + +#endif // PLAYER_H