1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-04 03:40:14 +00:00
OpenMW/apps/openmw/mwlua/context.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
469 B
C++
Raw Normal View History

2021-02-17 22:56:14 +01:00
#ifndef MWLUA_CONTEXT_H
#define MWLUA_CONTEXT_H
namespace LuaUtil
{
class LuaState;
class UserdataSerializer;
}
namespace MWLua
{
class LuaEvents;
2021-02-17 22:56:14 +01:00
class LuaManager;
class WorldView;
struct Context
{
bool mIsGlobal;
LuaManager* mLuaManager;
LuaUtil::LuaState* mLua;
LuaUtil::UserdataSerializer* mSerializer;
WorldView* mWorldView;
LuaEvents* mLuaEvents;
2021-02-17 22:56:14 +01:00
};
}
#endif // MWLUA_CONTEXT_H