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.
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
|