Starbound/source/game/scripting/StarCelestialLuaBindings.hpp
2025-03-21 22:23:30 +11:00

16 lines
259 B
C++

#ifndef STAR_ROOT_LUA_BINDINGS_HPP
#define STAR_ROOT_LUA_BINDINGS_HPP
#include "StarLua.hpp"
namespace Star {
STAR_CLASS(Root);
STAR_CLASS(UniverseClient);
namespace LuaBindings {
LuaCallbacks makeCelestialCallbacks(UniverseClient* client);
}
}
#endif