1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 16:19:54 +00:00
openmw-tes3mp/apps/openmw/mwscript/transformationextensions.hpp

24 lines
411 B
C++
Raw Normal View History

2012-07-09 16:47:59 +00:00
#ifndef GAME_SCRIPT_TRANSFORMATIONEXTENSIONS_H
#define GAME_SCRIPT_TRANSFORMATIONEXTENSIONS_H
namespace Compiler
{
class Extensions;
}
namespace Interpreter
{
class Interpreter;
}
namespace MWScript
{
/// \brief stats-related script functionality (creatures and NPCs)
namespace Transformation
{
2012-07-09 16:47:59 +00:00
void installOpcodes (Interpreter::Interpreter& interpreter);
}
}
2015-03-11 14:54:45 +00:00
#endif