aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/DataStructures/Shape.swift
blob: 146b0e6d5176bbc57ec2c564a2faf40a039d419c (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
}
}