mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 12:20:41 +00:00
24 lines
370 B
C++
24 lines
370 B
C++
|
#ifndef GAME_SCRIPT_CONTROLEXTENSIONS_H
|
||
|
#define GAME_SCRIPT_CONTROLEXTENSIONS_H
|
||
|
|
||
|
namespace Compiler
|
||
|
{
|
||
|
class Extensions;
|
||
|
}
|
||
|
|
||
|
namespace Interpreter
|
||
|
{
|
||
|
class Interpreter;
|
||
|
}
|
||
|
|
||
|
namespace MWScript
|
||
|
{
|
||
|
/// \brief player controls-related script functionality
|
||
|
namespace Control
|
||
|
{
|
||
|
void installOpcodes(Interpreter::Interpreter& interpreter);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|