aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/DataStructures/Stage.swift
blob: 87efdc1147f20c0f293780c511a5503b1c1c4b34 (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
  }
}