aboutsummaryrefslogtreecommitdiff
path: root/src/openvic2/map/Region.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/openvic2/map/Region.hpp')
-rw-r--r--src/openvic2/map/Region.hpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/openvic2/map/Region.hpp b/src/openvic2/map/Region.hpp
deleted file mode 100644
index f688254..0000000
--- a/src/openvic2/map/Region.hpp
+++ /dev/null
@@ -1,28 +0,0 @@
-#pragma once
-
-#include "Province.hpp"
-
-namespace OpenVic2 {
-
- struct ProvinceSet {
- protected:
- std::vector<Province*> provinces;
- public:
- size_t get_province_count() const;
- bool contains_province(Province const* province) const;
- std::vector<Province*> const& get_provinces() const;
- };
-
- /* REQUIREMENTS:
- * MAP-6, MAP-44, MAP-48
- */
- struct Region : HasIdentifier, ProvinceSet {
- friend struct Map;
- private:
- Region(std::string const& new_identifier);
- public:
- Region(Region&&) = default;
-
- colour_t get_colour() const;
- };
-}