1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-12-22 14:23:06 +00:00
openmw/apps/openmw/mwlua/context.hpp
2023-08-08 22:57:28 +02:00

28 lines
475 B
C++

#ifndef MWLUA_CONTEXT_H
#define MWLUA_CONTEXT_H
namespace LuaUtil
{
class LuaState;
class UserdataSerializer;
}
namespace MWLua
{
class LuaEvents;
class LuaManager;
class ObjectLists;
struct Context
{
bool mIsGlobal;
LuaManager* mLuaManager;
LuaUtil::LuaState* mLua;
LuaUtil::UserdataSerializer* mSerializer;
ObjectLists* mObjectLists;
LuaEvents* mLuaEvents;
};
}
#endif // MWLUA_CONTEXT_H