aboutsummaryrefslogtreecommitdiff
path: root/extension/src/openvic2/Good.cpp
diff options
context:
space:
mode:
author ClarkeCode <clarke.john.robert@gmail.com>2023-04-28 19:22:47 +0200
committer ClarkeCode <clarke.john.robert@gmail.com>2023-04-28 19:22:47 +0200
commit92d0f35b989b0164e2dd8c9a32213c6038e5d57f (patch)
treec7218b23a831ac9fd7421a4256699b52cdedf242 /extension/src/openvic2/Good.cpp
parentb6f9d6433c4ace514fa991cea628c2598c3bc65c (diff)
Struct tweaks
Diffstat (limited to 'extension/src/openvic2/Good.cpp')
-rw-r--r--extension/src/openvic2/Good.cpp18
1 files changed, 1 insertions, 17 deletions
diff --git a/extension/src/openvic2/Good.cpp b/extension/src/openvic2/Good.cpp
index ecd2bfb..e3389de 100644
--- a/extension/src/openvic2/Good.cpp
+++ b/extension/src/openvic2/Good.cpp
@@ -1,19 +1,3 @@
#include "Good.hpp"
-using namespace OpenVic2;;
-
-Good::Good() = default;
-
-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;
- this->cost = cost;
- this->colour = colour;
- this->isAvailableAtStart = isAvailable;
- this->isTradable = isTradable;
- this->isMoney = isMoney;
- this->hasOverseasPenalty = hasOverseasPenalty;
-}
-
-Good::~Good() = default; \ No newline at end of file
+using namespace OpenVic2;