qmlfrontend/engine_instance.h
author Wuzzy <Wuzzy2@mail.ru>
Mon, 19 Nov 2018 17:56:49 +0100
changeset 14265 748c611bee79
parent 14175 8354b390f1a2
child 14292 1aac8a62be6f
permissions -rw-r--r--
Remove some chatslang from missions Note: loc("...") does not violate the string freeze, this string has already been collected

#ifndef ENGINEINSTANCE_H
#define ENGINEINSTANCE_H

#include "engine_interface.h"

#include <QObject>

class EngineInstance : public QObject {
  Q_OBJECT
 public:
  explicit EngineInstance(QObject *parent = nullptr);
  ~EngineInstance();

  Engine::PreviewInfo generatePreview();

 signals:

 public slots:

 private:
  Engine::EngineInstance *m_instance;
};

#endif  // ENGINEINSTANCE_H