mirror of
https://github.com/OpenMW/openmw.git
synced 2025-11-07 05:46:43 +00:00
23 lines
346 B
C++
23 lines
346 B
C++
#ifndef GAME_SCRIPT_GUIEXTENSIONS_H
|
|
#define GAME_SCRIPT_GUIEXTENSIONS_H
|
|
|
|
namespace Compiler
|
|
{
|
|
class Extensions;
|
|
}
|
|
|
|
namespace Interpreter
|
|
{
|
|
class Interpreter;
|
|
}
|
|
|
|
namespace MWScript
|
|
{
|
|
/// \brief GUI-related script functionality
|
|
namespace Gui
|
|
{
|
|
void installOpcodes(Interpreter::Interpreter& interpreter);
|
|
}
|
|
}
|
|
|
|
#endif
|