mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-04 12:39:55 +00:00
c8bf69b91a
This reverts commit 7a9b64c6f4823f16cd2f6e6a6de6812578c106d6.
16 lines
352 B
C++
16 lines
352 B
C++
|
|
#include "actiontalk.hpp"
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
#include "../mwbase/dialoguemanager.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
ActionTalk::ActionTalk (const Ptr& actor) : Action (false, actor) {}
|
|
|
|
void ActionTalk::executeImp (const Ptr& actor)
|
|
{
|
|
MWBase::Environment::get().getDialogueManager()->startDialogue (getTarget());
|
|
}
|
|
}
|