mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
424 B
C++
21 lines
424 B
C++
9 years ago
|
#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
|