2010-07-26 21:09:37 +00:00
|
|
|
#ifndef GAME_SCRIPT_STATSEXTENSIONS_H
|
|
|
|
#define GAME_SCRIPT_STATSEXTENSIONS_H
|
|
|
|
|
|
|
|
namespace Compiler
|
|
|
|
{
|
|
|
|
class Extensions;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace Interpreter
|
|
|
|
{
|
|
|
|
class Interpreter;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace MWScript
|
|
|
|
{
|
|
|
|
/// \brief stats-related script functionality (creatures and NPCs)
|
|
|
|
namespace Stats
|
2013-08-07 00:38:41 +00:00
|
|
|
{
|
2010-07-26 21:09:37 +00:00
|
|
|
void installOpcodes (Interpreter::Interpreter& interpreter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|