1 #ifndef WIDGET_CITY_WITH_OVERLAY_H
2 #define WIDGET_CITY_WITH_OVERLAY_H
3 
4 #include "graphics/tooltip.h"
5 #include "map/point.h"
6 
7 /**
8  * Update the internal state after changing overlay
9  */
10 void city_with_overlay_update(void);
11 
12 void city_with_overlay_draw(const map_tile *tile);
13 
14 int city_with_overlay_get_tooltip_text(tooltip_context *c, int grid_offset);
15 
16 #endif // WIDGET_CITY_WITH_OVERLAY_H
17