blob: 6bd17497921900134ea7dbd506e57b32ebfc11d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef STAR_CONFIG_LUA_BINDINGS_HPP
#define STAR_CONFIG_LUA_BINDINGS_HPP
#include "StarLua.hpp"
namespace Star {
namespace LuaBindings {
LuaCallbacks makeConfigCallbacks(function<Json(String const&, Json const&)> getParameter);
}
}
#endif
|