1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-12-04 10:34:32 +00:00
openmw/apps/openmw/mwscript/userextensions.hpp
2022-09-22 21:35:26 +03:00

23 lines
370 B
C++

#ifndef GAME_SCRIPT_USEREXTENSIONS_H
#define GAME_SCRIPT_USEREXTENSIONS_H
namespace Compiler
{
class Extensions;
}
namespace Interpreter
{
class Interpreter;
}
namespace MWScript
{
/// \brief Temporary script functionality limited to the console
namespace User
{
void installOpcodes(Interpreter::Interpreter& interpreter);
}
}
#endif