blob: 1237fc5b6b256f053c494632f413308129f3f31f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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
|