mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 02:15:33 +00:00
18 lines
385 B
C++
18 lines
385 B
C++
|
|
||
|
#include "dialogmanager.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;
|
||
|
}
|
||
|
|
||
|
}
|