aboutsummaryrefslogtreecommitdiff
path: root/extension/src/openvic2/Good.cpp
diff options
context:
space:
mode:
author Wolfgang Aigner <wolfgang.aigner@yahoo.de>2023-04-06 18:44:07 +0200
committer Wolfgang Aigner <wolfgang.aigner@yahoo.de>2023-04-06 18:44:07 +0200
commit98dd680a641a2cbe0f1f93202a5beffdfd35c9f7 (patch)
tree1041c2aa577c3523faf37f362f1b50614004c242 /extension/src/openvic2/Good.cpp
parent383583733b2f4cd8c5e632c160afdb987b8615af (diff)
Changed type of cost in Good.hpp/.cpp + codestyle
Diffstat (limited to 'extension/src/openvic2/Good.cpp')
-rw-r--r--extension/src/openvic2/Good.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/src/openvic2/Good.cpp b/extension/src/openvic2/Good.cpp
index 3424099..ecd2bfb 100644
--- a/extension/src/openvic2/Good.cpp
+++ b/extension/src/openvic2/Good.cpp
@@ -4,7 +4,7 @@ using namespace OpenVic2;;
Good::Good() = default;
-Good::Good(const godot::String& identifier, const godot::String& category, float_t cost, const godot::String& colour,
+Good::Good(const godot::String& identifier, const godot::String& category, price_t cost, const godot::String& colour,
bool isAvailable, bool isTradable, bool isMoney, bool hasOverseasPenalty) {
this->identifier = identifier;
this->category = category;