popcorn/Scripts/Extensions/BoolExtensions.cs

12 lines
203 B
C#

public static class BoolExtensions {
public static int ToInt(this bool b){
return b ? 1 : 0;
}
public static int ToIntPlusMinus(this bool b){
return b ? 1 : -1;
}
}