Files
riversong-code-showcase/Source/Riversong/Game/World/Pathfinding/PathTraversalRules.cs
2026-05-21 16:04:49 +02:00

22 lines
407 B
C#

using System;
namespace DanieleMarotta.RiversongCodeShowcase
{
[Flags]
public enum PathTraversalRules : byte
{
None = 0,
CardinalDirectionsOnly = 1,
RoadsOnly = 1 << 1,
UpdateFailedPathCache = 1 << 2,
FertileTilesOnly = 1 << 3,
GenericAgent = None,
TransportAgent = CardinalDirectionsOnly | RoadsOnly | UpdateFailedPathCache
}
}