From d56e777025f3bda29feaec22c125b0e7ab975e0c Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 14 Dec 2025 16:52:57 +0100 Subject: Format, make map equatable --- Sources/WmapParser/DataStructures/Shape.swift | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'Sources/WmapParser/DataStructures/Shape.swift') diff --git a/Sources/WmapParser/DataStructures/Shape.swift b/Sources/WmapParser/DataStructures/Shape.swift index 146b0e6..4870670 100644 --- a/Sources/WmapParser/DataStructures/Shape.swift +++ b/Sources/WmapParser/DataStructures/Shape.swift @@ -1,10 +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 -} + /// Any of the potential shapes in a component. + @frozen + public enum Shape: Sendable, Equatable { + case circle + case xMark + case square + case triangle + } } -- cgit