diff --git a/SpriteCompiler/AI/IntegerPathCost.cs b/SpriteCompiler/AI/IntegerPathCost.cs index 963b45c..b6c793a 100644 --- a/SpriteCompiler/AI/IntegerPathCost.cs +++ b/SpriteCompiler/AI/IntegerPathCost.cs @@ -7,6 +7,9 @@ namespace SpriteCompiler.AI /// public sealed class IntegerCost : ICost { + public static IntegerCost ZERO = new IntegerCost(0); + public static IntegerCost ONE = new IntegerCost(1); + private readonly int value; public IntegerCost()