(svn r19707) -Add: helper functions to instantiate/fill ResolverObjects

This commit is contained in:
rubidium
2010-04-24 13:35:18 +00:00
parent e75e2648fc
commit 1da0086a45
7 changed files with 71 additions and 0 deletions

View File

@@ -656,3 +656,13 @@ void TriggerHouse(TileIndex t, HouseTrigger trigger)
{
DoTriggerHouse(t, trigger, 0, true);
}
/**
* Resolve a house's spec and such so we can get a variable.
* @param ro The resolver object to fill.
* @param index The house tile to get the data from.
*/
void GetHouseResolver(ResolverObject *ro, uint index)
{
NewHouseResolver(ro, GetHouseType(index), index, Town::GetByTile(index));
}