1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-23 22:53:55 +00:00
openmw/apps/opencs/view/world/pathgridcreator.hpp

27 lines
604 B
C++
Raw Normal View History

#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