mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +00:00
18 lines
387 B
C++
18 lines
387 B
C++
|
|
#include "dialoguemanager.hpp"
|
|
|
|
#include "../mwworld/class.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
namespace MWDialog
|
|
{
|
|
DialogManager::DialogManager (MWWorld::Environment& environment) : mEnvironment (environment) {}
|
|
|
|
void DialogManager::startDialog (const MWWorld::Ptr& actor)
|
|
{
|
|
std::cout << "talking with " << MWWorld::Class::get (actor).getName (actor) << std::endl;
|
|
}
|
|
|
|
}
|