mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-02 10:48:29 +02:00
11 lines
144 B
Python
11 lines
144 B
Python
import enum
|
|
|
|
|
|
class Region(enum.Enum):
|
|
"""
|
|
Enum for game region
|
|
"""
|
|
PAL = "PAL"
|
|
USA = "USA"
|
|
JAP = "JAP"
|
|
KOR = "KOR"
|