Codechange: Update minimum CMake version to 3.16 for all parts. (#13141)
[openttd-github.git] / src / pathfinder / yapf / yapf.hpp
blobdb8508fdcd10dbedf8476e62da9475106407dd28
1 /*
2 * This file is part of OpenTTD.
3 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6 */
8 /** @file yapf.hpp Base includes/functions for YAPF. */
10 #ifndef YAPF_HPP
11 #define YAPF_HPP
13 #include "../../landscape.h"
14 #include "../pathfinder_func.h"
15 #include "yapf.h"
17 #include "../../misc/hashtable.hpp"
18 #include "../../misc/binaryheap.hpp"
19 #include "../../misc/dbg_helpers.h"
20 #include "nodelist.hpp"
21 #include "../follow_track.hpp"
22 #include "yapf_type.hpp"
23 #include "yapf_base.hpp"
24 #include "yapf_node.hpp"
25 #include "yapf_common.hpp"
26 #include "yapf_costbase.hpp"
27 #include "yapf_costcache.hpp"
30 #endif /* YAPF_HPP */