mirror of
https://github.com/lscharen/iigs-sprite-compiler.git
synced 2024-11-19 20:31:44 +00:00
10 lines
191 B
C#
10 lines
191 B
C#
|
namespace SpriteCompiler.AI
|
|||
|
{
|
|||
|
using System;
|
|||
|
|
|||
|
public interface IStepCostFunction<A, S, C> where C : IPathCost<C>
|
|||
|
{
|
|||
|
C StepCost(S fromState, A action, S toState);
|
|||
|
}
|
|||
|
}
|