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

10 lines
191 B
C#
Raw Normal View History

2016-11-27 05:39:50 +00:00
namespace SpriteCompiler.AI
{
using System;
public interface IStepCostFunction<A, S, C> where C : IPathCost<C>
{
C StepCost(S fromState, A action, S toState);
}
}