21 lines
375 B
C#
21 lines
375 B
C#
using Unity.Mathematics;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public struct PathQuery
|
|
{
|
|
public int Handle;
|
|
|
|
public PathSearchType SearchType;
|
|
|
|
public int2 SourceTile;
|
|
|
|
public TileRect DestinationRect;
|
|
|
|
public int TargetId;
|
|
|
|
public PathTraversalRules TraversalRules;
|
|
|
|
public int MaxDistance;
|
|
}
|
|
} |