diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2017-10-21 14:40:20 +0200 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2017-10-21 14:40:20 +0200 |
commit | f08fb7293382dbaf240860119d128486ada62221 (patch) | |
tree | ce9a85f47b3dacc98f75a9f73f1378d4c00ec915 /src/common.hpp | |
parent | 42fece714e30b899208a90183a571452eb35811e (diff) |
Improve short paths and do some refactoring.
Diffstat (limited to 'src/common.hpp')
-rw-r--r-- | src/common.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common.hpp b/src/common.hpp index 8f610a5..79c160a 100644 --- a/src/common.hpp +++ b/src/common.hpp @@ -132,8 +132,8 @@ namespace world { ~path_finder_t(); void setup_nodes(v2f_t src_, v2f_t dst_); void find_r(tile_index_t index, float dist); - void find(void); - bool export_path(std::list<v2f_t> *list); + bool find(void); + void export_path(std::list<v2f_t> *list); }; } |