File diff r27165:ea28ecab6159 → r27166:64e04a3ef9b1
src/town_map.h
Show inline comments
 
@@ -9,12 +9,13 @@
 

	
 
#ifndef TOWN_MAP_H
 
#define TOWN_MAP_H
 

	
 
#include "road_map.h"
 
#include "house.h"
 
#include "timer/timer_game_calendar.h"
 

	
 
/**
 
 * Get the index of which town this house/street is attached to.
 
 * @param t the tile
 
 * @pre IsTileType(t, MP_HOUSE) or IsTileType(t, MP_ROAD) but not a road depot
 
 * @return TownID
 
@@ -243,13 +244,13 @@ static inline void IncrementHouseAge(Til
 
/**
 
 * Get the age of the house
 
 * @param t the tile of this house
 
 * @pre IsTileType(t, MP_HOUSE)
 
 * @return year
 
 */
 
static inline Year GetHouseAge(Tile t)
 
static inline TimerGameCalendar::Year GetHouseAge(Tile t)
 
{
 
	assert(IsTileType(t, MP_HOUSE));
 
	return IsHouseCompleted(t) ? t.m5() : 0;
 
}
 

	
 
/**