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
|
2021-09-19 14:38:27 +02:00
|
|
|
return LuaUtil::makeReadOnly(api);
|
2021-01-29 01:54:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|