mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-20 06:40:09 +00:00
14 lines
241 B
C++
14 lines
241 B
C++
|
#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);
|
||
|
}
|
||
|
|
||
|
}
|