aboutsummaryrefslogtreecommitdiff
path: root/src/openvic2/map/Region.hpp
diff options
context:
space:
mode:
author Hop311 <Hop3114@gmail.com>2023-05-09 21:10:02 +0200
committer GitHub <noreply@github.com>2023-05-09 21:10:02 +0200
commit339e0278a2064f7eeb152fe8c5778840b609e9f3 (patch)
tree05bb2635d921de9ad138736d49e4b5ea7a419c23 /src/openvic2/map/Region.hpp
parent1838e79d6af83dbed2f1b387acf02aacca0eb4bc (diff)
parent3550c455526eb6f8935f488810e73fe01a1177a9 (diff)
Merge pull request #2 from OpenVic2Project/goods
Added GoodManager
Diffstat (limited to 'src/openvic2/map/Region.hpp')
-rw-r--r--src/openvic2/map/Region.hpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/openvic2/map/Region.hpp b/src/openvic2/map/Region.hpp
index 3920dfc..f688254 100644
--- a/src/openvic2/map/Region.hpp
+++ b/src/openvic2/map/Region.hpp
@@ -1,18 +1,16 @@
#pragma once
-#include <set>
-
#include "Province.hpp"
namespace OpenVic2 {
struct ProvinceSet {
protected:
- std::set<Province*> provinces;
+ std::vector<Province*> provinces;
public:
size_t get_province_count() const;
bool contains_province(Province const* province) const;
- std::set<Province*> const& get_provinces() const;
+ std::vector<Province*> const& get_provinces() const;
};
/* REQUIREMENTS: