forked from mirror/openmw-tes3mp
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
|