aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/DataStructures/StageNumber.swift
blob: b30874200b2c66561be261f339dc1cf050a16539 (plain)
1
2
3
4
5
6
7
8
9
10
extension WmapParser {
  /// The potential stages of evolution.
  @frozen
  public enum StageNumber: Sendable, Equatable {
    case stageI
    case stageII
    case stageIII
    case stageIV
  }
}