mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
23 lines
447 B
C++
23 lines
447 B
C++
#ifndef CSV_WORLD_GLOBALCREATOR_H
|
|
#define CSV_WORLD_GLOBALCREATOR_H
|
|
|
|
#include "genericcreator.hpp"
|
|
|
|
namespace CSVWorld
|
|
{
|
|
class GlobalCreator : public GenericCreator
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
GlobalCreator(CSMWorld::Data& data, QUndoStack& undoStack, const CSMWorld::UniversalId& id);
|
|
|
|
protected:
|
|
|
|
void configureCreateCommand(CSMWorld::CreateCommand& command) const override;
|
|
};
|
|
}
|
|
|
|
#endif
|