aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/DataStructures/Shape.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Sources/WmapParser/DataStructures/Shape.swift')
-rw-r--r--Sources/WmapParser/DataStructures/Shape.swift10
1 files changed, 10 insertions, 0 deletions
diff --git a/Sources/WmapParser/DataStructures/Shape.swift b/Sources/WmapParser/DataStructures/Shape.swift
new file mode 100644
index 0000000..146b0e6
--- /dev/null
+++ b/Sources/WmapParser/DataStructures/Shape.swift
@@ -0,0 +1,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
+}
+}