mirror of
https://github.com/lscharen/iigs-sprite-compiler.git
synced 2024-09-15 23:57:18 +00:00
10 lines
141 B
C#
10 lines
141 B
C#
namespace SpriteCompiler.AI
|
|
{
|
|
using System;
|
|
|
|
public interface IPathCost<C> : IComparable<C>
|
|
{
|
|
C Add(C value);
|
|
}
|
|
}
|