unitfactory.h 279 B

1234567891011121314151617181920
  1. #ifndef UNITFACTORY_H
  2. #define UNITFACTORY_H
  3. #include <QObject>
  4. #include <QImage>
  5. class UnitFactory : public QObject
  6. {
  7. Q_OBJECT
  8. public:
  9. explicit UnitFactory(QObject *parent = nullptr);
  10. private:
  11. QImage race_icon_;
  12. signals:
  13. public slots:
  14. };
  15. #endif // UNITFACTORY_H