1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 21:19:57 +00:00
openmw-tes3mp/apps/openmw/mwdialogue/dialoguemanager.cpp

17 lines
397 B
C++

#include "dialoguemanager.hpp"
#include "../mwworld/class.hpp"
#include <iostream>
namespace MWDialogue
{
DialogueManager::DialogueManager (MWWorld::Environment& environment) : mEnvironment (environment) {}
void DialogueManager::startDialogue (const MWWorld::Ptr& actor)
{
std::cout << "talking with " << MWWorld::Class::get (actor).getName (actor) << std::endl;
}
}