1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-25 19:39:42 +00:00
openmw/apps/openmw/mwscript/cellextensions.hpp
2010-07-03 12:12:13 +02:00

27 lines
430 B
C++

#ifndef GAME_SCRIPT_CELLEXTENSIONS_H
#define GAME_SCRIPT_CELLEXTENSIONS_H
namespace Compiler
{
class Extensions;
}
namespace Interpreter
{
class Interpreter;
}
namespace MWScript
{
/// \brief cell-related script functionality
namespace Cell
{
void registerExtensions (Compiler::Extensions& extensions);
void installOpcodes (Interpreter::Interpreter& interpreter);
}
}
#endif