mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 22:49:55 +00:00
39 lines
1 KiB
C++
39 lines
1 KiB
C++
#ifndef CSV_WORLD_DIALOGUECREATOR_H
|
|
#define CSV_WORLD_DIALOGUECREATOR_H
|
|
|
|
#include "genericcreator.hpp"
|
|
|
|
namespace CSVWorld
|
|
{
|
|
class DialogueCreator : public GenericCreator
|
|
{
|
|
int mType;
|
|
|
|
protected:
|
|
|
|
void configureCreateCommand (CSMWorld::CreateCommand& command) const override;
|
|
|
|
public:
|
|
|
|
DialogueCreator (CSMWorld::Data& data, QUndoStack& undoStack,
|
|
const CSMWorld::UniversalId& id, int type);
|
|
};
|
|
|
|
class TopicCreatorFactory : public CreatorFactoryBase
|
|
{
|
|
public:
|
|
|
|
Creator *makeCreator (CSMDoc::Document& document, const CSMWorld::UniversalId& id) const override;
|
|
///< The ownership of the returned Creator is transferred to the caller.
|
|
};
|
|
|
|
class JournalCreatorFactory : public CreatorFactoryBase
|
|
{
|
|
public:
|
|
|
|
Creator *makeCreator (CSMDoc::Document& document, const CSMWorld::UniversalId& id) const override;
|
|
///< The ownership of the returned Creator is transferred to the caller.
|
|
};
|
|
}
|
|
|
|
#endif
|