mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-03 17:54:06 +00:00
24 lines
374 B
C++
24 lines
374 B
C++
|
#ifndef GAME_SCRIPT_DIALOGUEEXTENSIONS_H
|
||
|
#define GAME_SCRIPT_DIALOGUEEXTENSIONS_H
|
||
|
|
||
|
namespace Compiler
|
||
|
{
|
||
|
class Extensions;
|
||
|
}
|
||
|
|
||
|
namespace Interpreter
|
||
|
{
|
||
|
class Interpreter;
|
||
|
}
|
||
|
|
||
|
namespace MWScript
|
||
|
{
|
||
|
/// \brief Dialogue/Journal-related script functionality
|
||
|
namespace Dialogue
|
||
|
{
|
||
|
void installOpcodes(Interpreter::Interpreter& interpreter);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|