OpenRA.Mods.Common.Traits.EditorActorLayer.RadarSignatureCells C# (CSharp) Method

RadarSignatureCells() public method

public RadarSignatureCells ( Actor self ) : Color>>.IEnumerable
self Actor
return Color>>.IEnumerable
        public IEnumerable<Pair<CPos, Color>> RadarSignatureCells(Actor self)
        {
            return cellMap.SelectMany(c => c.Value.Select(p => Pair.New(c.Key, p.Owner.Color.RGB)));
        }