[routing] Avoid steps

Signed-off-by: x7z4w <x7z4w@noreply.codeberg.org>
This commit is contained in:
x7z4w
2025-09-20 13:04:39 +00:00
committed by jeanbaptisteC
parent ad07875b88
commit fceb6e0b8a
2 changed files with 10 additions and 2 deletions

View File

@@ -18,8 +18,9 @@ public:
Motorway = 1u << 2,
Ferry = 1u << 3,
Dirty = 1u << 4,
Steps = 1u << 5,
Max = (1u << 4) + 1
Max = (1u << 5) + 1
};
using RoadType = std::underlying_type_t<Road>;