1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-03-01 20:39:45 +00:00
openmw/apps/openmw/mwscript/dialogueextensions.hpp
2022-09-22 21:35:26 +03:00

23 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