diff options
author | Hop311 <hop3114@gmail.com> | 2023-05-03 20:37:26 +0200 |
---|---|---|
committer | Hop311 <hop3114@gmail.com> | 2023-05-03 20:37:26 +0200 |
commit | 64bbf86b623a3cca2eaf9009d7acdcde067592e3 (patch) | |
tree | 5d607f28019675c9eaaa2883acf036717fa45b2f /src/openvic2/Good.hpp | |
parent | c92481448159d3a363d6a99b3025bd2358c3dab6 (diff) |
Moved code to src/openvic2
Diffstat (limited to 'src/openvic2/Good.hpp')
-rw-r--r-- | src/openvic2/Good.hpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/openvic2/Good.hpp b/src/openvic2/Good.hpp new file mode 100644 index 0000000..378bbc4 --- /dev/null +++ b/src/openvic2/Good.hpp @@ -0,0 +1,21 @@ +#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) {}; + }; +} |