SC4Parser
SC4Parser copied to clipboard
Additional network types
Hi, just noting this for a future release.
These are the following network types by their type ID:
/// <summary>
/// Different network types as strings
/// </summary>
public static Dictionary<byte, string> NETWORK_TYPE_STRINGS = new Dictionary<byte, string>
{
{0x00, "Road"},
{0x01, "Rail"},
{0x02, "Elevated Highway"},
{0x03, "Street"},
{0x04, "Pipe"},
{0x05, "Power Line"},
{0x06, "Avenue"},
{0x07, "Subway"},
{0x08, "Light Rail"},
{0x09, "Monorail"},
{0x0A, "One Way Road"},
{0x0B, "Dirt Road"},
{0x0C, "Ground Highway"}
};
Note that Pipe and PowerLine networks are not actually used though they are supported.
Much appreciated :+1: I'll update this structure in the next release.