mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 18:35:20 +00:00
14 lines
236 B
C++
14 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);
|
|
}
|
|
|
|
}
|