diff --git a/util_functions.hpp b/util_functions.hpp index ac88df4..fd67177 100644 --- a/util_functions.hpp +++ b/util_functions.hpp @@ -4,6 +4,7 @@ #include #include +namespace utils { template godot::Dictionary hashmap_to_dictionary(godot::HashMap const &map) { godot::Dictionary dict{}; @@ -20,5 +21,6 @@ godot::HashMap dictionary_to_hashmap(godot::Dictionary const &dict) { map.insert(keys[i], dict[keys[i]]); return map; } +} #endif // !UTILS_FUNCTIONS_HPP