2012-07-30 09:43:28 +00:00
|
|
|
#ifndef GAME_SCRIPT_USEREXTENSIONS_H
|
|
|
|
#define GAME_SCRIPT_USEREXTENSIONS_H
|
|
|
|
|
|
|
|
namespace Compiler
|
|
|
|
{
|
|
|
|
class Extensions;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace Interpreter
|
|
|
|
{
|
|
|
|
class Interpreter;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace MWScript
|
|
|
|
{
|
2013-01-16 03:19:16 +00:00
|
|
|
/// \brief Temporary script functionality limited to the console
|
2012-07-30 09:43:28 +00:00
|
|
|
namespace User
|
|
|
|
{
|
|
|
|
void registerExtensions (Compiler::Extensions& extensions);
|
|
|
|
|
|
|
|
void installOpcodes (Interpreter::Interpreter& interpreter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|