(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

@@ -113,3 +113,13 @@ uint8 GetReverseRailTypeTranslation(RailType railtype, const GRFFile *grffile)
/* If not found, return as invalid */
return 0xFF;
}
/**
* Resolve a railtypes's spec and such so we can get a variable.
* @param ro The resolver object to fill.
* @param index The rail tile to get the data from.
*/
void GetRailTypeResolver(ResolverObject *ro, uint index)
{
NewRailTypeResolver(ro, index);
}