#include <map.hpp>
This is information that doesn't need to be repeated for each tile in each layer of the map.
Definition at line 45 of file map.hpp.
Public Member Functions | |
| MetaTile () | |
| Constructor. | |
Public Attributes | |
| int | Fcost |
| Estimation of total path cost. | |
| int | Gcost |
| Cost from start to this location. | |
| int | Hcost |
| Estimated cost to goal. | |
| int | whichList |
| No list, open list or closed list. | |
| int | parentX |
| X coordinate of parent tile. | |
| int | parentY |
| Y coordinate of parent tile. | |
| bool | walkable |
| Can beings walk on this tile. | |
|
|
Constructor.
|
|
|
Estimation of total path cost.
|
|
|
Cost from start to this location.
|
|
|
Estimated cost to goal.
|
|
|
X coordinate of parent tile.
|
|
|
Y coordinate of parent tile.
|
|
|
Can beings walk on this tile.
|
|
|
No list, open list or closed list.
|
1.3.9.1