using Microsoft.Xna.Framework; using System.Collections.Generic; namespace Barotrauma { class CompareSegmentPointCW : IComparer { private Vector2 center; public CompareSegmentPointCW(Vector2 center) { this.center = center; } public int Compare(Lights.SegmentPoint a, Lights.SegmentPoint b) { return -CompareCCW.Compare(a.WorldPos, b.WorldPos, center); } } }