mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +00:00
18 lines
397 B
C++
18 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;
|
|
}
|
|
|
|
}
|