iigs-sprite-compiler/SpriteCompiler/AI/IPathCost.cs

10 lines
141 B
C#

namespace SpriteCompiler.AI
{
using System;
public interface IPathCost<C> : IComparable<C>
{
C Add(C value);
}
}