2 * See Licensing and Copyright notice in naev.h
8 * @brief Handles the Lua space bindings.
10 * These bindings control the planets and systems.
13 #include "nlua_space.h"
22 #include "nlua_planet.h"
23 #include "nlua_system.h"
27 * @brief Loads the space library.
29 * @param L State to load space library into.
30 * @param readonly Load read only functions?
31 * @return 0 on success.
33 int nlua_loadSpace( lua_State
*L
, int readonly
)
35 nlua_loadPlanet( L
, readonly
);
36 nlua_loadSystem( L
, readonly
);