1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2026-02-10 19:38:28 +00:00
openmw/apps/openmw/mwlua/camerabindings.cpp

13 lines
236 B
C++

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