| | 1 | | using System.Collections.Generic; |
| | 2 | | using System.Runtime.CompilerServices; |
| | 3 | |
|
| | 4 | | [assembly: InternalsVisibleTo("Itinero.Tests")] |
| | 5 | | [assembly: InternalsVisibleTo("Itinero.Tests.Benchmarks")] |
| | 6 | | [assembly: InternalsVisibleTo("Itinero.Tests.Functional")] |
| | 7 | |
|
| | 8 | | namespace Itinero.Instructions.Types.Generators; |
| | 9 | |
|
| | 10 | | internal static class AllGenerators |
| | 11 | | { |
| 1 | 12 | | public static readonly IReadOnlyList<IInstructionGenerator> Generators = new List<IInstructionGenerator>() { |
| 1 | 13 | | new BaseInstructionGenerator(), |
| 1 | 14 | | new EndInstructionGenerator(), |
| 1 | 15 | | new StartInstructionGenerator(), |
| 1 | 16 | | new IntersectionInstructionGenerator(), |
| 1 | 17 | | new RoundaboutInstructionGenerator(), |
| 1 | 18 | | new FollowAlongGenerator(), |
| 1 | 19 | | new FollowBendGenerator(), |
| 1 | 20 | | new TurnGenerator() |
| 1 | 21 | | }; |
| | 22 | | } |