aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/DataStructures/StageNumber.swift
blob: 603e06b2458690214070e0c8678345a22b856b1b (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
}
}