diff options
author | Hop311 <Hop3114@gmail.com> | 2023-05-09 21:10:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-09 21:10:02 +0200 |
commit | 339e0278a2064f7eeb152fe8c5778840b609e9f3 (patch) | |
tree | 05bb2635d921de9ad138736d49e4b5ea7a419c23 /src/openvic2/Good.hpp | |
parent | 1838e79d6af83dbed2f1b387acf02aacca0eb4bc (diff) | |
parent | 3550c455526eb6f8935f488810e73fe01a1177a9 (diff) |
Merge pull request #2 from OpenVic2Project/goods
Added GoodManager
Diffstat (limited to 'src/openvic2/Good.hpp')
-rw-r--r-- | src/openvic2/Good.hpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/openvic2/Good.hpp b/src/openvic2/Good.hpp deleted file mode 100644 index 378bbc4..0000000 --- a/src/openvic2/Good.hpp +++ /dev/null @@ -1,21 +0,0 @@ -#pragma once - -#include "Types.hpp" - -namespace OpenVic2 { - class Good : HasIdentifier { - public: - std::string category; - price_t cost; - std::string colour; - bool isAvailable; - bool isTradable; - bool isMoney; - bool hasOverseasPenalty; - - Good(Good&&) = default; - Good(std::string const& identifier,std::string const& category, price_t cost, std::string const& colour, - bool isAvailable, bool isTradable, bool isMoney, bool hasOverseasPenalty) : HasIdentifier(identifier), - category(category), cost(cost), colour(colour), isAvailable(isAvailable), isMoney(isMoney), hasOverseasPenalty(hasOverseasPenalty) {}; - }; -} |