mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 11:19:55 +00:00
31 lines
575 B
C++
31 lines
575 B
C++
|
#ifndef CSV_WORLD_REFERENCEABLECREATOR_H
|
||
|
#define CSV_WORLD_REFERENCEABLECREATOR_H
|
||
|
|
||
|
class QComboBox;
|
||
|
|
||
|
#include "genericcreator.hpp"
|
||
|
|
||
|
namespace CSVWorld
|
||
|
{
|
||
|
class ReferenceableCreator : public GenericCreator
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
QComboBox *mType;
|
||
|
|
||
|
private:
|
||
|
|
||
|
virtual void configureCreateCommand (CSMWorld::CreateCommand& command) const;
|
||
|
|
||
|
public:
|
||
|
|
||
|
ReferenceableCreator (CSMWorld::Data& data, QUndoStack& undoStack,
|
||
|
const CSMWorld::UniversalId& id);
|
||
|
|
||
|
virtual void reset();
|
||
|
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|