osb/source/game/scripting/StarCelestialLuaBindings.hpp
2023-06-20 14:33:09 +10:00

17 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