mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
27 lines
411 B
C++
27 lines
411 B
C++
#ifndef GAME_MMDIALOG_DIALOGMANAGER_H
|
|
#define GAME_MWDIALOG_DIALOGMANAGER_H
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
class Environment;
|
|
}
|
|
|
|
namespace MWDialog
|
|
{
|
|
class DialogManager
|
|
{
|
|
MWWorld::Environment& mEnvironment;
|
|
|
|
public:
|
|
|
|
DialogManager (MWWorld::Environment& environment);
|
|
|
|
void startDialog (const MWWorld::Ptr& actor);
|
|
|
|
};
|
|
}
|
|
|
|
#endif
|