mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-21 09:23:51 +00:00
27 lines
604 B
C++
27 lines
604 B
C++
|
#ifndef PATHGRIDCREATOR_HPP
|
||
|
#define PATHGRIDCREATOR_HPP
|
||
|
|
||
|
#include "genericcreator.hpp"
|
||
|
|
||
|
namespace CSVWorld
|
||
|
{
|
||
|
/// \brief Record creator for pathgrids.
|
||
|
class PathgridCreator : public GenericCreator
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
|
||
|
PathgridCreator(
|
||
|
CSMWorld::Data& data,
|
||
|
QUndoStack& undoStack,
|
||
|
const CSMWorld::UniversalId& id,
|
||
|
bool relaxedIdRules = false);
|
||
|
|
||
|
/// \return Error description for current user input.
|
||
|
virtual std::string getErrors() const;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // PATHGRIDCREATOR_HPP
|