From d769cfda64d0d01a5f0aa2f9be2cb2b264148de0 Mon Sep 17 00:00:00 2001 From: glax Date: Tue, 23 Jul 2024 15:46:28 +0200 Subject: [PATCH] Move HighwayTypes from Pathfinding to here --- OSM_Graph/Enums/HighwayType.cs | 36 ++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 OSM_Graph/Enums/HighwayType.cs diff --git a/OSM_Graph/Enums/HighwayType.cs b/OSM_Graph/Enums/HighwayType.cs new file mode 100644 index 0000000..0b20bbf --- /dev/null +++ b/OSM_Graph/Enums/HighwayType.cs @@ -0,0 +1,36 @@ +// ReSharper disable InconsistentNaming +// ReSharper disable UnusedMember.Global +namespace OSM_Graph.Enums; + +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 +} \ No newline at end of file