36 lines
565 B
C#
36 lines
565 B
C#
|
// ReSharper disable InconsistentNaming
|
|||
|
// ReSharper disable UnusedMember.Global
|
|||
|
namespace astar.PathingHelper;
|
|||
|
|
|||
|
public enum HighwayType
|
|||
|
{
|
|||
|
NONE,
|
|||
|
motorway,
|
|||
|
trunk,
|
|||
|
primary,
|
|||
|
secondary,
|
|||
|
tertiary,
|
|||
|
unclassified,
|
|||
|
residential,
|
|||
|
motorway_link,
|
|||
|
trunk_link,
|
|||
|
primary_link,
|
|||
|
secondary_link,
|
|||
|
tertiary_link,
|
|||
|
living_street,
|
|||
|
service,
|
|||
|
pedestrian,
|
|||
|
track,
|
|||
|
bus_guideway,
|
|||
|
escape,
|
|||
|
raceway,
|
|||
|
road,
|
|||
|
busway,
|
|||
|
footway,
|
|||
|
bridleway,
|
|||
|
steps,
|
|||
|
corridor,
|
|||
|
path,
|
|||
|
cycleway,
|
|||
|
construction
|
|||
|
}
|