2010-07-03 10:12:13 +00:00
|
|
|
#ifndef GAME_SCRIPT_EXTENSIONS_H
|
|
|
|
#define GAME_SCRIPT_EXTENSIONS_H
|
|
|
|
|
|
|
|
namespace Compiler
|
|
|
|
{
|
|
|
|
class Extensions;
|
|
|
|
}
|
|
|
|
|
2010-07-18 17:54:56 +00:00
|
|
|
namespace Interpreter
|
|
|
|
{
|
|
|
|
class Interpreter;
|
|
|
|
}
|
|
|
|
|
2010-07-03 10:12:13 +00:00
|
|
|
namespace MWScript
|
|
|
|
{
|
|
|
|
void registerExtensions (Compiler::Extensions& extensions);
|
2010-07-18 17:54:56 +00:00
|
|
|
|
|
|
|
void installOpcodes (Interpreter::Interpreter& interpreter);
|
2010-07-03 10:12:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|