1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00
OpenMW/apps/openmw/mwscript/guiextensions.hpp

24 lines
346 B
C++
Raw Normal View History

#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
2022-09-22 21:26:05 +03:00
{
void installOpcodes(Interpreter::Interpreter& interpreter);
}
}
#endif