riversong code showcase
This commit is contained in:
21
Source/Riversong/Game/World/Pathfinding/PathQuery.cs
Normal file
21
Source/Riversong/Game/World/Pathfinding/PathQuery.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user