mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-14 04:38:20 +10:00
21 lines
361 B
Python
21 lines
361 B
Python
import enum
|
|
|
|
|
|
class os_data(enum.IntEnum):
|
|
# OS Versions, Based off Major Kernel Version
|
|
tiger = 8
|
|
leopard = 9
|
|
snow_leopard = 10
|
|
lion = 11
|
|
mountain_lion = 12
|
|
mavericks = 13
|
|
yosemite = 14
|
|
el_capitan = 15
|
|
sierra = 16
|
|
high_sierra = 17
|
|
mojave = 18
|
|
catalina = 19
|
|
big_sur = 20
|
|
monterey = 21
|
|
max_os = 99
|