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

14 lines
241 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 context.mLua->makeReadOnly(api);
}
}