diff options
Diffstat (limited to 'source/core/StarLuaConverters.hpp')
-rw-r--r-- | source/core/StarLuaConverters.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source/core/StarLuaConverters.hpp b/source/core/StarLuaConverters.hpp index c20442f..eb06e35 100644 --- a/source/core/StarLuaConverters.hpp +++ b/source/core/StarLuaConverters.hpp @@ -259,6 +259,12 @@ struct LuaConverter<Color> { static Maybe<Color> to(LuaEngine& engine, LuaValue const& v); }; +template <> +struct LuaConverter<LuaCallbacks> { + static LuaValue from(LuaEngine& engine, LuaCallbacks const& c); + static Maybe<LuaCallbacks> to(LuaEngine& engine, LuaValue const& v); +}; + } #endif |