2010-08-07 13:11:31 +00:00
|
|
|
#ifndef GAME_SCRIPT_CONTAINEREXTENSIONS_H
|
|
|
|
#define GAME_SCRIPT_CONTAINEREXTENSIONS_H
|
|
|
|
|
|
|
|
namespace Compiler
|
|
|
|
{
|
|
|
|
class Extensions;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace Interpreter
|
|
|
|
{
|
|
|
|
class Interpreter;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace MWScript
|
|
|
|
{
|
2010-09-25 18:23:38 +00:00
|
|
|
/// \brief Container-related script functionality (chests, NPCs, creatures)
|
2010-08-07 13:11:31 +00:00
|
|
|
namespace Container
|
|
|
|
{
|
|
|
|
void installOpcodes (Interpreter::Interpreter& interpreter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|