mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
27 lines
381 B
C++
27 lines
381 B
C++
|
#ifndef GAME_SCRIPT_MISCEXTENSIONS_H
|
||
|
#define GAME_SCRIPT_MISCEXTENSIONS_H
|
||
|
|
||
|
namespace Compiler
|
||
|
{
|
||
|
class Extensions;
|
||
|
}
|
||
|
|
||
|
namespace Interpreter
|
||
|
{
|
||
|
class Interpreter;
|
||
|
}
|
||
|
|
||
|
namespace MWScript
|
||
|
{
|
||
|
namespace Misc
|
||
|
{
|
||
|
void registerExtensions (Compiler::Extensions& extensions);
|
||
|
|
||
|
void installOpcodes (Interpreter::Interpreter& interpreter);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|