mirror of
https://github.com/tnodir/fort
synced 2024-11-16 04:15:14 +00:00
19 lines
230 B
C++
19 lines
230 B
C++
#ifndef FORTMANAGER_H
|
|
#define FORTMANAGER_H
|
|
|
|
#include <QObject>
|
|
|
|
class FortManager : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit FortManager(QObject *parent = nullptr);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // FORTMANAGER_H
|