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.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: