1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-12 12:38:02 +00:00
OpenMW/apps/opencs/view/world/pathgridcreator.hpp

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