osb/source/game/scripting/StarCelestialLuaBindings.hpp

17 lines
259 B
C++
Raw Normal View History

2023-06-20 04:33:09 +00:00
#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