6 lines
104 B
Python
6 lines
104 B
Python
from enum import Enum
|
|
|
|
class PlaceRigChoice( Enum ):
|
|
UserChoice = 0
|
|
ForceR6 = 1
|
|
ForceR15 = 2 |