mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 23:49:55 +00:00
22 lines
446 B
C++
22 lines
446 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:
|
|
|
|
virtual void configureCreateCommand(CSMWorld::CreateCommand& command) const;
|
|
};
|
|
}
|
|
|
|
#endif
|