From 0b90075f76b6f2df77c01c303322323b1395641a Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 14 Dec 2025 16:16:22 +0100 Subject: Use WmapParser namespace --- Sources/WmapParser/DataStructures/Shape.swift | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Sources/WmapParser/DataStructures/Shape.swift (limited to 'Sources/WmapParser/DataStructures/Shape.swift') 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 +} +} -- cgit