(svn r4086) Add MakeIndustry()

This commit is contained in:
tron
2006-03-24 13:31:17 +00:00
parent 88d27219b4
commit 05bae48ef8
2 changed files with 13 additions and 4 deletions

View File

@@ -14,3 +14,14 @@ static inline Industry* GetIndustryByTile(TileIndex t)
{
return GetIndustry(GetIndustryIndex(t));
}
static inline void MakeIndustry(TileIndex t, uint index, uint gfx)
{
SetTileType(t, MP_INDUSTRY);
_m[t].m1 = 0;
_m[t].m2 = index;
_m[t].m3 = 0;
_m[t].m4 = 0;
_m[t].m5 = gfx;
}