diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2025-04-13 18:11:59 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2025-04-13 18:11:59 +1000 |
commit | 7d1beb6ed8d125286ffa61e909f6389ae648e128 (patch) | |
tree | ac5bc485da7a4ddb0c1ccc2817fbd984375aa1fa /source/core | |
parent | 97ba073681b75af10cd0eab827a6aa98b77ea627 (diff) |
add root.assetsScan
Diffstat (limited to 'source/core')
-rw-r--r-- | source/core/StarLua.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/core/StarLua.hpp b/source/core/StarLua.hpp index 57afb98..fa777c2 100644 --- a/source/core/StarLua.hpp +++ b/source/core/StarLua.hpp @@ -1050,6 +1050,9 @@ struct LuaContainerConverter { template <typename T, typename Allocator> struct LuaConverter<List<T, Allocator>> : LuaContainerConverter<List<T, Allocator>> {}; +template <typename T, typename Allocator, typename Equals> +struct LuaConverter<HashSet<T, Allocator, Equals>> : LuaContainerConverter<HashSet<T, Allocator, Equals>> {}; + template <typename T, size_t MaxSize> struct LuaConverter<StaticList<T, MaxSize>> : LuaContainerConverter<StaticList<T, MaxSize>> {}; |