mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
15 lines
No EOL
371 B
C++
15 lines
No EOL
371 B
C++
#pragma once
|
|
|
|
#include "libs/sol2/sol.hpp"
|
|
#include "nlohmann/json.hpp"
|
|
|
|
namespace lua_utils
|
|
{
|
|
sol::table mapJsonToLua(sol::state &lua, nlohmann::json json);
|
|
|
|
void bindEquProjType(sol::state &lua);
|
|
void bindSatProjType(sol::state &lua);
|
|
void bindGeoTypes(sol::state &lua);
|
|
void bindImageTypes(sol::state &lua);
|
|
void bindLogger(sol::state &lua);
|
|
}; |