7 lines
80 B
Python
7 lines
80 B
Python
from enum import Enum
|
|
|
|
|
|
class GameChannel(Enum):
|
|
Overseas = 0
|
|
China = 1
|