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/Inertia.swift | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Sources/WmapParser/DataStructures/Inertia.swift (limited to 'Sources/WmapParser/DataStructures/Inertia.swift') diff --git a/Sources/WmapParser/DataStructures/Inertia.swift b/Sources/WmapParser/DataStructures/Inertia.swift new file mode 100644 index 0000000..146ad70 --- /dev/null +++ b/Sources/WmapParser/DataStructures/Inertia.swift @@ -0,0 +1,6 @@ +extension WmapParser { + /// Inertia associated with a component. + public struct Inertia: Sendable, Equatable { + public let component: String + } +} -- cgit