aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/DataStructures/Shape.swift
blob: 487067014482b48a48e24bbb5a3402211404bcb8 (plain)
1
2
3
4
5
6
7
8
9
10
extension WmapParser {
  /// Any of the potential shapes in a component.
  @frozen
  public enum Shape: Sendable, Equatable {
    case circle
    case xMark
    case square
    case triangle
  }
}