osb/source/game/scripting/StarScriptedAnimatorLuaBindings.hpp

15 lines
350 B
C++
Raw Normal View History

2023-06-20 04:33:09 +00:00
#ifndef STAR_SCRIPTED_ANIMATOR_LUA_BINDINGS_HPP
#define STAR_SCRIPTED_ANIMATOR_LUA_BINDINGS_HPP
#include "StarLua.hpp"
#include "StarNetworkedAnimator.hpp"
namespace Star {
namespace LuaBindings {
LuaCallbacks makeScriptedAnimatorCallbacks(const NetworkedAnimator* animator, function<Json(String const&, Json const&)> getParameter);
}
}
#endif