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

10 lines
187 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 : ICost<C>
2016-11-27 05:39:50 +00:00
{
C StepCost(S fromState, A action, S toState);
}
}