1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00

27 lines
574 B
C++
Raw Normal View History

2011-04-04 11:16:56 +02:00
#include "journal.hpp"
2011-04-04 11:23:15 +02:00
#include <iostream>
2011-04-04 11:16:56 +02:00
namespace MWDialogue
{
2011-04-04 11:23:15 +02:00
Journal::Journal (MWWorld::Environment& environment)
2011-04-04 11:16:56 +02:00
: mEnvironment (environment)
{}
2011-04-04 11:23:15 +02:00
void Journal::addEntry (const std::string& id, int index)
{
std::cout << "journal: " << id << " at " << index << std::endl;
}
void Journal::setJournalIndex (const std::string& id, int index)
{
std::cout << "journal (no entry): " << id << " at " << index << std::endl;
}
int Journal::getJournalIndex (const std::string& id) const
{
return 0;
}
2011-04-04 11:16:56 +02:00
}