- Never consider a bot in inf attacks mode being in after attack mode, helps action in inf attack
- Also start thinking if TurnTimeLeft is bigger than default value
#ifndef PREVIEW_ACCEPTOR_H
#define PREVIEW_ACCEPTOR_H
#include <QObject>
class QQmlEngine;
class PreviewImageProvider;
class PreviewAcceptor : public QObject {
Q_OBJECT
public:
explicit PreviewAcceptor(QQmlEngine *engine, QObject *parent = nullptr);
public slots:
void setImage(const QImage &preview);
private:
PreviewImageProvider *m_previewProvider;
};
#endif // PREVIEW_ACCEPTOR_H