35 lines
665 B
C++
35 lines
665 B
C++
/*
|
||
* © Copyright 2014 – Urheberrechtshinweis
|
||
* Alle Rechte vorbehalten / All Rights Reserved
|
||
*
|
||
* Programmcode ist urheberrechtlich geschuetzt.
|
||
* Das Urheberrecht liegt, soweit nicht ausdruecklich anders gekennzeichnet, bei Frank Ebner.
|
||
* Keine Verwendung ohne explizite Genehmigung.
|
||
* (vgl. § 106 ff UrhG / § 97 UrhG)
|
||
*/
|
||
|
||
#ifndef QNAVMESHSETTINGS_H
|
||
#define QNAVMESHSETTINGS_H
|
||
|
||
#include <QObject>
|
||
#include <QDialog>
|
||
|
||
namespace NM {
|
||
class NavMeshSettings;
|
||
}
|
||
|
||
class QNavMeshSettings : public QDialog {
|
||
|
||
Q_OBJECT
|
||
|
||
|
||
public:
|
||
|
||
QNavMeshSettings(NM::NavMeshSettings* settings, QWidget* parent = nullptr);
|
||
|
||
bool ok = false;
|
||
|
||
};
|
||
|
||
#endif // QNAVMESHSETTINGS_H
|