mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 13:19:54 +00:00
16 lines
325 B
C++
16 lines
325 B
C++
|
|
#include "actiontalk.hpp"
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
|
|
#include "../mwdialogue/dialoguemanager.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
ActionTalk::ActionTalk (const Ptr& actor) : mActor (actor) {}
|
|
|
|
void ActionTalk::execute()
|
|
{
|
|
MWBase::Environment::get().getDialogueManager()->startDialogue (mActor);
|
|
}
|
|
}
|