1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-08 09:37:53 +00:00
OpenMW/apps/openmw/mwscript/cellextensions.hpp

26 lines
361 B
C++
Raw Normal View History

2010-07-03 10:12:13 +00:00
#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
{
2010-07-03 10:12:13 +00:00
void installOpcodes (Interpreter::Interpreter& interpreter);
}
}
#endif