Add #12939: [NewGRF] Add road-/tram-/rail-type variable 0x45 to get mutual road-/tram-/rail-type on same tile. (#13934)

This commit is contained in:
frosch
2025-04-13 13:23:10 +02:00
committed by GitHub
parent 04c41bf731
commit 7f82b181da
6 changed files with 86 additions and 0 deletions

View File

@@ -451,6 +451,7 @@ static const NIVariable _niv_railtypes[] = {
NIV(0x42, "level crossing status"),
NIV(0x43, "construction date"),
NIV(0x44, "town zone"),
NIV(0x45, "track types"),
};
class NIHRailType : public NIHelper {
@@ -620,6 +621,7 @@ static const NIVariable _niv_roadtypes[] = {
NIV(0x42, "level crossing status"),
NIV(0x43, "construction date"),
NIV(0x44, "town zone"),
NIV(0x45, "track types"),
};
template <RoadTramType TRoadTramType>