using System; namespace Chernobyl { /// /// Used to denote one or more of the four edges of some item. /// [Flags] public enum Edge { /// /// None of the item's edges. /// None = 0, /// /// The top edge of the item. /// Top = 1, /// /// The left edge of the item. /// Left = 2, /// /// The right edge of the item. /// Right = 4, /// /// The bottom edge of the item. /// Bottom = 8, /// /// All edges of the item. /// All = Edge.Top | Edge.Left | Edge.Right | Edge.Bottom } }