riversong code showcase
This commit is contained in:
11
Source/Riversong/Game/World/Pathfinding/IFailedPathCache.cs
Normal file
11
Source/Riversong/Game/World/Pathfinding/IFailedPathCache.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace DanieleMarotta.RiversongCodeShowcase
|
||||
{
|
||||
public interface IFailedPathCache
|
||||
{
|
||||
void FailPath(int sourceId, int targetId);
|
||||
|
||||
bool IsKnownFailedPath(int sourceId, int targetId);
|
||||
|
||||
void Invalidate();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user