mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 06:35:30 +00:00
22 lines
299 B
C++
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
|