mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 23:19:56 +00:00
26 lines
425 B
C++
26 lines
425 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 registerExtensions (Compiler::Extensions& extensions);
|
|
|
|
void installOpcodes (Interpreter::Interpreter& interpreter);
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|