draw and give tooltips for more map features

This commit is contained in:
2025-08-06 13:45:40 -05:00
parent b64f5fc814
commit a5cc323f00
5 changed files with 86 additions and 20 deletions

View File

@@ -1,6 +1,7 @@
#include <functional>
#include "location.hpp"
#include "vehicle.hpp"
bool is_explored(short i,short j);
void make_explored(short i,short j);
@@ -43,3 +44,5 @@ location push_loc(location from_where,location to_where);
bool spot_impassable(short i,short j);
void swap_ter(short i,short j,ter_num_t ter1,ter_num_t ter2);
void alter_space(short i,short j,ter_num_t ter);
// Whether a vehicle is in the current town/outdoor section shown on the map
bool vehicle_is_here(const cVehicle& vehicle);