mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 04:49:54 +00:00
33 lines
554 B
C++
33 lines
554 B
C++
#ifndef GAME_MMDIALOG_DIALOGUEMANAGER_H
|
|
#define GAME_MWDIALOG_DIALOGUEMANAGER_H
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
struct DialInfo;
|
|
}
|
|
|
|
namespace MWWorld
|
|
{
|
|
class Environment;
|
|
}
|
|
|
|
namespace MWDialogue
|
|
{
|
|
class DialogueManager
|
|
{
|
|
MWWorld::Environment& mEnvironment;
|
|
|
|
bool isMatching (const MWWorld::Ptr& actor, const ESM::DialInfo& info) const;
|
|
|
|
public:
|
|
|
|
DialogueManager (MWWorld::Environment& environment);
|
|
|
|
void startDialogue (const MWWorld::Ptr& actor);
|
|
|
|
};
|
|
}
|
|
|
|
#endif
|