mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 18:18:52 +00:00
29 lines
569 B
C++
29 lines
569 B
C++
#ifndef GAME_MWSCRIPT_REF_H
|
|
#define GAME_MWSCRIPT_REF_H
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
namespace Interpreter
|
|
{
|
|
class Runtime;
|
|
}
|
|
|
|
namespace MWScript
|
|
{
|
|
struct ExplicitRef
|
|
{
|
|
static constexpr bool implicit = false;
|
|
|
|
MWWorld::Ptr operator()(Interpreter::Runtime& runtime, bool required = true, bool activeOnly = false) const;
|
|
};
|
|
|
|
struct ImplicitRef
|
|
{
|
|
static constexpr bool implicit = true;
|
|
|
|
MWWorld::Ptr operator()(Interpreter::Runtime& runtime, bool required = true, bool activeOnly = false) const;
|
|
};
|
|
}
|
|
|
|
#endif
|