aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/KeywordParserContext.swift
diff options
context:
space:
mode:
authorRuben Beltran del Rio <jj@r.bdr.sh>2025-12-13 01:17:52 +0100
committerRuben Beltran del Rio <jj@r.bdr.sh>2025-12-14 09:15:07 +0100
commit03f1a7389afeadf9aa2b1d62a38e5cb0a2a7e60d (patch)
tree2efefc34a61c62d55d8436180acfc3590287f5fd /Sources/WmapParser/KeywordParserContext.swift
Initial implementation
Diffstat (limited to 'Sources/WmapParser/KeywordParserContext.swift')
-rw-r--r--Sources/WmapParser/KeywordParserContext.swift7
1 files changed, 7 insertions, 0 deletions
diff --git a/Sources/WmapParser/KeywordParserContext.swift b/Sources/WmapParser/KeywordParserContext.swift
new file mode 100644
index 0000000..1b889b3
--- /dev/null
+++ b/Sources/WmapParser/KeywordParserContext.swift
@@ -0,0 +1,7 @@
+struct KeywordParserContext {
+ var stages: [Stage]
+ var notes: [Note]
+ var groups: [Group]
+ var inertias: [Inertia]
+ var evolutions: [Evolution]
+}