11 lines
240 B
C#
11 lines
240 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public interface IFailedPathCache
|
|
{
|
|
void FailPath(int sourceId, int targetId);
|
|
|
|
bool IsKnownFailedPath(int sourceId, int targetId);
|
|
|
|
void Invalidate();
|
|
}
|
|
} |