aboutsummaryrefslogtreecommitdiff
path: root/Good.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'Good.hpp')
-rw-r--r--Good.hpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/Good.hpp b/Good.hpp
deleted file mode 100644
index 378bbc4..0000000
--- a/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) {};
- };
-}