BattleInfoPlugin.Models.CellTypeExtensions.ToCellType C# (CSharp) Method

ToCellType() public static method

public static ToCellType ( this colorNo ) : CellType
colorNo this
return CellType
        public static CellType ToCellType(this int colorNo)
        {
            return (CellType)(1 << colorNo);
        }
CellTypeExtensions