aboutsummaryrefslogtreecommitdiff
path: root/extension/src/openvic2/Good.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'extension/src/openvic2/Good.hpp')
-rw-r--r--extension/src/openvic2/Good.hpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/extension/src/openvic2/Good.hpp b/extension/src/openvic2/Good.hpp
index 615b82c..dd2e8a8 100644
--- a/extension/src/openvic2/Good.hpp
+++ b/extension/src/openvic2/Good.hpp
@@ -1,14 +1,16 @@
#pragma once
-#include <godot_cpp/variant/string.hpp>
#include <string>
+#include <godot_cpp/variant/string.hpp>
namespace OpenVic2 {
class Good {
public:
+ using price_t = float;
+
godot::String identifier;
godot::String category;
- float_t cost;
+ price_t cost;
godot::String colour;
bool isAvailableAtStart;
bool isTradable;
@@ -16,8 +18,8 @@ namespace OpenVic2 {
bool hasOverseasPenalty;
Good();
- Good(const godot::String& identifier, const godot::String& category, float_t cost, const godot::String& colour,
- bool isAvailable, bool isTradable, bool isMoney, bool hasOverseasPenalty);
+ Good(const godot::String& identifier, const godot::String& category, price_t cost, const godot::String& colour,
+ bool isAvailable, bool isTradable, bool isMoney, bool hasOverseasPenalty);
~Good();
};
} \ No newline at end of file