mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +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);
|
|
}
|
|
|
|
}
|