aboutsummaryrefslogtreecommitdiff
path: root/extension/src/openvic2/LoadGoods.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'extension/src/openvic2/LoadGoods.hpp')
-rw-r--r--extension/src/openvic2/LoadGoods.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/extension/src/openvic2/LoadGoods.hpp b/extension/src/openvic2/LoadGoods.hpp
index 41dd75e..38b8c7b 100644
--- a/extension/src/openvic2/LoadGoods.hpp
+++ b/extension/src/openvic2/LoadGoods.hpp
@@ -1,13 +1,13 @@
#pragma once
+#include "Good.hpp"
-#include <godot_cpp/classes/object.hpp>
#include <vector>
-#include "Good.hpp"
+#include <godot_cpp/classes/object.hpp>
namespace OpenVic2 {
class LoadGoods {
private:
- static bool extract_property_from_json(const godot::Variant& variant, std::vector<Good>& goods, int32_t index);
+ static bool extract_property_from_json(godot::Variant const& variant, std::vector<Good>& goods, int32_t index);
public:
static std::vector<Good> load_goods_from_disk(godot::String const& file_path);