diff options
author | zaaarf <80046572+zaaarf@users.noreply.github.com> | 2024-01-02 15:48:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-02 15:48:56 +0100 |
commit | 791e64795a5f688e5ae673b88c5f2787d6450ce8 (patch) | |
tree | cf9324311fb1b49a09ccc17dc8f2ba4d24fae538 /src/openvic-simulation/map/Province.hpp | |
parent | 4c8da86c3bede8834f381fa63edaa3e140131f69 (diff) | |
parent | 2f5706fd5ef6bbdee54c82860e03f00a96751693 (diff) |
Merge pull request #114 from OpenVicProject/squared-roots
Integer and fixed point squared roots
Diffstat (limited to 'src/openvic-simulation/map/Province.hpp')
-rw-r--r-- | src/openvic-simulation/map/Province.hpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/openvic-simulation/map/Province.hpp b/src/openvic-simulation/map/Province.hpp index bb10b29..b77ec06 100644 --- a/src/openvic-simulation/map/Province.hpp +++ b/src/openvic-simulation/map/Province.hpp @@ -155,13 +155,7 @@ namespace OpenVic { std::vector<adjacency_t const*> get_adjacencies_going_through(Province const* province) const; bool has_adjacency_going_through(Province const* province) const; - static bool add_standard_adjacency(Province& from, Province& to); - static bool add_special_adjacency( - Province& from, Province& to, adjacency_t::type_t type, Province const* through, adjacency_t::data_t data - ); - fvec2_t get_unit_position() const; - static distance_t calculate_distance_between(Province const& from, Province const& to); bool reset(BuildingTypeManager const& building_type_manager); bool apply_history_to_province(ProvinceHistoryEntry const* entry); |