1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-10 06:39:49 +00:00
OpenMW/apps/openmw/mwscript/containerextensions.hpp

26 lines
466 B
C++
Raw Normal View History

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 registerExtensions (Compiler::Extensions& extensions);
void installOpcodes (Interpreter::Interpreter& interpreter);
}
}
#endif