mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-14 14:32:15 -07:00
13 lines
242 B
C++
13 lines
242 B
C++
#ifndef COCKATRICE_PLAYER_LOGGER_H
|
|
#define COCKATRICE_PLAYER_LOGGER_H
|
|
#include <QObject>
|
|
|
|
class PlayerLogger : public QObject
|
|
{
|
|
|
|
Q_OBJECT
|
|
public:
|
|
PlayerLogger(QObject *parent, Player *player);
|
|
};
|
|
|
|
#endif // COCKATRICE_PLAYER_LOGGER_H
|