1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-10 06:39:49 +00:00
OpenMW/apps/openmw/mwdialogue/dialoguemanager.hpp

27 lines
411 B
C++
Raw Normal View History

2010-08-06 16:01:34 +00:00
#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