unit.h 193 B

1234567891011121314151617
  1. #ifndef UNIT_H
  2. #define UNIT_H
  3. #include <QObject>
  4. class Unit : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. explicit Unit(QObject *parent = nullptr);
  9. signals:
  10. public slots:
  11. };
  12. #endif // UNIT_H