BattleInfoPlugin.Models.CellTypeConverter.Split C# (CSharp) Method

Split() public static method

public static Split ( this type ) : IEnumerable
type this
return IEnumerable
        public static IEnumerable<CellType> Split(this CellType type)
        {
            return SingleTypes.Where(single => type.HasFlag(single));
        }
CellTypeConverter