1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00
OpenMW/apps/openmw/mwscript/transformationextensions.hpp

24 lines
402 B
C++
Raw Normal View History

2012-07-09 18:47:59 +02: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
2022-09-22 21:26:05 +03:00
{
void installOpcodes(Interpreter::Interpreter& interpreter);
2012-07-09 18:47:59 +02:00
}
}
2015-03-11 10:54:45 -04:00
#endif