forked from mirror/openmw-tes3mp
21 lines
424 B
C++
21 lines
424 B
C++
|
#ifndef CSV_WORLD_GLOBALCREATOR_H
|
||
|
#define CSV_WORLD_GLOBALCREATOR_H
|
||
|
|
||
|
#include "genericcreator.hpp"
|
||
|
|
||
|
namespace CSVWorld
|
||
|
{
|
||
|
class GlobalCreator : public GenericCreator
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
GlobalCreator(CSMWorld::Data& data, QUndoStack& undoStack, const CSMWorld::UniversalId& id);
|
||
|
|
||
|
protected:
|
||
|
|
||
|
virtual void configureCreateCommand(CSMWorld::CreateCommand& command) const;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|