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