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

14 lines
236 B
C++
Raw Normal View History

2021-01-29 01:54:54 +01:00
#include "luabindings.hpp"
namespace MWLua
{
sol::table initCameraPackage(const Context& context)
{
sol::table api(context.mLua->sol(), sol::create);
// TODO
return LuaUtil::makeReadOnly(api);
2021-01-29 01:54:54 +01:00
}
}