1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-25 21:09:43 +00:00
openmw/apps/openmw/mwscript/skyextensions.hpp

23 lines
355 B
C++

#ifndef GAME_SCRIPT_SKYEXTENSIONS_H
#define GAME_SCRIPT_SKYEXTENSIONS_H
namespace Compiler
{
class Extensions;
}
namespace Interpreter
{
class Interpreter;
}
namespace MWScript
{
/// \brief sky-related script functionality
namespace Sky
{
void installOpcodes (Interpreter::Interpreter& interpreter);
}
}
#endif