mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
27 lines
574 B
C++
27 lines
574 B
C++
|
|
#include "journal.hpp"
|
|
|
|
|
|
#include <iostream>
|
|
namespace MWDialogue
|
|
{
|
|
Journal::Journal (MWWorld::Environment& environment)
|
|
: mEnvironment (environment)
|
|
{}
|
|
|
|
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;
|
|
}
|
|
}
|