1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00
2011-04-04 11:16:56 +02:00

22 lines
299 B
C++

#ifndef GAME_MMDIALOG_JOURNAL_H
#define GAME_MWDIALOG_JOURNAL_H
namespace MWWorld
{
struct Environment;
}
namespace MWDialogue
{
class Journal
{
MWWorld::Environment& mEnvironment;
public:
Journal (MWWorld::Environment& environment);
};
}
#endif