mirror of
https://github.com/lscharen/iigs-sprite-compiler.git
synced 2025-02-11 17:30:41 +00:00
Add 0 and 1 constants
This commit is contained in:
parent
b1a3bd8f4e
commit
fda5e268d7
@ -7,6 +7,9 @@ namespace SpriteCompiler.AI
|
||||
/// </summary>
|
||||
public sealed class IntegerCost : ICost<IntegerCost>
|
||||
{
|
||||
public static IntegerCost ZERO = new IntegerCost(0);
|
||||
public static IntegerCost ONE = new IntegerCost(1);
|
||||
|
||||
private readonly int value;
|
||||
|
||||
public IntegerCost()
|
||||
|
Loading…
x
Reference in New Issue
Block a user