diff options
Diffstat (limited to 'Sources/WmapParser/Shape.swift')
| -rw-r--r-- | Sources/WmapParser/Shape.swift | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Sources/WmapParser/Shape.swift b/Sources/WmapParser/Shape.swift new file mode 100644 index 0000000..ea1844e --- /dev/null +++ b/Sources/WmapParser/Shape.swift @@ -0,0 +1,8 @@ +/// Any of the potential shapes in a component. +@frozen +public enum Shape: Sendable, Equatable { + case circle + case xMark + case square + case triangle +} |