aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/DataStructures/Stage.swift
blob: e0a99f11cd736a6fb59fd84c86ac8c60c245d624 (plain)
1
2
3
4
5
6
7
extension WmapParser {
/// An override for the width of an evolution stage.
public struct Stage: Sendable, Equatable {
  public let stage: StageNumber
  public let value: Double
}
}